Sha256: 2442b0f4f9817bc70bb302182744e08920b9e7d4be1dcf19f4257e73bf497c94
Contents?: true
Size: 1.2 KB
Versions: 38
Compression:
Stored size: 1.2 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map grid coordinate system # History: # Stan Smith 2018-10-04 original script require 'nokogiri' require_relative '../mapProjections/projection_transverseMercator' module ADIWG module Mdtranslator module Readers module Fgdc module MapGridOther def self.unpack(other, hProjection) # grid system 4.1.2.2.6 (othergrd) - other coordinate system {text} # -> ReferenceSystemParameters.projection.gridIdentifier.description hProjectionId = hProjection[:projectionIdentifier] hGridSystemId = hProjection[:gridIdentifier] hGridSystemId[:identifier] = 'other' hGridSystemId[:name] = 'Other Grid Coordinate System' if hGridSystemId[:name].nil? hGridSystemId[:description] = other hProjectionId[:identifier] = 'other' hProjectionId[:name] = 'Other Projection' hProjectionId[:description] = 'for description see grid system description' return hProjection end end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems