Sha256: b747138cdf20075548703372b3b2aa14e7c47c0d1ad1154630384276074cf569
Contents?: true
Size: 1.99 KB
Versions: 32
Compression:
Stored size: 1.99 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - general vertical near-side perspective projection # History: # Stan Smith 2018-10-03 refactor mdJson projection object # 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 GeneralVerticalProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.6 (gvnsp) - General Vertical Near-sided Perspective unless xParams.empty? paramCount = 0 # -> ReferenceSystemParameters.projection.heightOfProspectivePointAboveSurface paramCount += ProjectionCommon.unpackHeightAS(xParams, hProjection) # -> ReferenceSystemParameters.projection.longitudeOfProjectionCenter paramCount += ProjectionCommon.unpackLongPC(xParams, hProjection) # -> ReferenceSystemParameters.projection.latitudeOfProjectionCenter paramCount += ProjectionCommon.unpackLatPC(xParams, hProjection) # -> ReferenceSystemParameters.projection.falseEasting # -> ReferenceSystemParameters.projection.falseNorthing paramCount += ProjectionCommon.unpackFalseNE(xParams, hProjection) # add distance units # verify parameter count if paramCount == 5 return hProjection else hResponseObj[:readerExecutionMessages] << 'WARNING: General Vertical Near-side perspective projection is missing one or more parameters' end end return nil end end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems