Sha256: 3b5dcf4a5c61361bb1550bbc86d2da1c4af35b1950e5eaa55b14b289c0d4c898
Contents?: true
Size: 1.76 KB
Versions: 7
Compression:
Stored size: 1.76 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - polyconic # History: # Stan Smith 2017-10-17 original script require 'nokogiri' require 'adiwg/mdtranslator/internal/internal_metadata_obj' require_relative 'projection_common' module ADIWG module Mdtranslator module Readers module Fgdc module PolyconicProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.16 (polycon) - Polyconic unless xParams.empty? paramCount = 0 hProjection[:projection] = 'polyconic' hProjection[:projectionName] = 'Polyconic' # -> ReferenceSystemParameters.projection.longitudeOfCentralMeridian paramCount += ProjectionCommon.unpackLongCM(xParams, hProjection, hResponseObj) # -> ReferenceSystemParameters.projection.latitudeOfProjectionOrigin paramCount += ProjectionCommon.unpackLatPO(xParams, hProjection, hResponseObj) # -> ReferenceSystemParameters.projection.falseEasting # -> ReferenceSystemParameters.projection.falseNorthing paramCount += ProjectionCommon.unpackFalseNE(xParams, hProjection, hResponseObj) # verify parameter count if paramCount == 4 return hProjection else hResponseObj[:readerExecutionMessages] << 'WARNING: FGDC reader: Polyconic projection is missing one or more parameters' end end return nil end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems