Sha256: 99ffe1dc510d56ff3c6236031adb58082093b447f3285236ddcbb0d3cea0e8f0
Contents?: true
Size: 1.78 KB
Versions: 7
Compression:
Stored size: 1.78 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - stereographic # History: # Stan Smith 2017-10-18 original script require 'nokogiri' require 'adiwg/mdtranslator/internal/internal_metadata_obj' require_relative 'projection_common' module ADIWG module Mdtranslator module Readers module Fgdc module StereographicProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.20 (stereo) - Stereographic unless xParams.empty? paramCount = 0 hProjection[:projection] = 'stereographic' hProjection[:projectionName] = 'Stereographic' # -> 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] << 'WARNING: FGDC reader: Stereographic 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