module ADIWG::Mdtranslator::Readers::Fgdc::EquidistantConicProjection

Public Class Methods

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

   # map projection 4.1.2.1.4 (equicon) - Equidistant Conic
   unless xParams.empty?
      paramCount = 0

      # -> ReferenceSystemParameters.projection.standardParallel1
      # -> ReferenceSystemParameters.projection.standardParallel2
      paramCount += ProjectionCommon.unpackStandParallel(xParams, hProjection)

      # -> ReferenceSystemParameters.projection.longitudeOfCentralMeridian
      paramCount += ProjectionCommon.unpackLongCM(xParams, hProjection)

      # -> ReferenceSystemParameters.projection.latitudeOfProjectionOrigin
      paramCount += ProjectionCommon.unpackLatPO(xParams, hProjection)

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

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

   return nil

end