Sha256: e5ca60a83bfbbd8e7ed7e370885c83ef13323347ad4541ca076bae644f521a36
Contents?: true
Size: 1.73 KB
Versions: 5
Compression:
Stored size: 1.73 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - space oblique # 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 SpaceObliqueProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.19 (spaceobq) - Space Oblique Mercator (Landsat) unless xParams.empty? paramCount = 0 hProjection[:projectionName] = 'space oblique' # -> ReferenceSystemParameters.projection.landsatNumber paramCount += ProjectionCommon.unpackLandSat(xParams, hProjection, hResponseObj) # -> ReferenceSystemParameters.projection.landsatPath paramCount += ProjectionCommon.unpackLandSatPath(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] << 'space oblique 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