Sha256: b4ad7446dc505ba56f3d42e945aebb751ad682ea45f3a54ab3a7f287883f9316
Contents?: true
Size: 1.72 KB
Versions: 5
Compression:
Stored size: 1.72 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - gnomonic projection # History: # Stan Smith 2017-10-16 original script require 'nokogiri' require 'adiwg/mdtranslator/internal/internal_metadata_obj' require_relative 'projection_common' module ADIWG module Mdtranslator module Readers module Fgdc module GnomonicProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.7 (gnomonic) - Gnomonic unless xParams.empty? paramCount = 0 hProjection[:projectionName] = 'gnomonic' # -> ReferenceSystemParameters.projection.longitudeOfProjectionCenter paramCount += ProjectionCommon.unpackLongPC(xParams, hProjection, hResponseObj) # -> ReferenceSystemParameters.projection.latitudeOfProjectionCenter paramCount += ProjectionCommon.unpackLatPC(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] << 'gnomonic projection is missing one or more parameters' return nil end end return nil end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems