module ADIWG::Mdtranslator::Readers::Fgdc::SpaceObliqueProjection

Public Class Methods

unpack(xParams, hProjection, hResponseObj) click to toggle source
# File lib/adiwg/mdtranslator/readers/fgdc/modules/mapProjections/projection_spaceOblique.rb, line 19
def self.unpack(xParams, hProjection, hResponseObj)

   # map projection 4.1.2.1.19 (spaceobq) - Space Oblique Mercator (Landsat)
   unless xParams.empty?
      paramCount = 0

      # -> ReferenceSystemParameters.projection.landsatNumber
      paramCount += ProjectionCommon.unpackLandSat(xParams, hProjection)

      # -> ReferenceSystemParameters.projection.landsatPath
      paramCount += ProjectionCommon.unpackLandSatPath(xParams, hProjection)

      # -> ReferenceSystemParameters.projection.falseEasting
      # -> ReferenceSystemParameters.projection.falseNorthing
      paramCount += ProjectionCommon.unpackFalseNE(xParams, hProjection)

      # verify parameter count
      if paramCount == 4
         return hProjection
      else
         hResponseObj[:readerExecutionMessages] <<
            'WARNING: Space Oblique projection is missing one or more parameters'
      end
   end

   return nil

end