Sha256: 3e45992e9cd5446fd9da0635e4d1d7aedf065f3b26b81ebffb2102b8666844fc
Contents?: true
Size: 1.92 KB
Versions: 32
Compression:
Stored size: 1.92 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - albers # History: # Stan Smith 2018-10-03 refactor mdJson projection object # Stan Smith 2017-10-04 original script require 'nokogiri' require 'adiwg/mdtranslator/internal/internal_metadata_obj' require_relative 'projection_common' module ADIWG module Mdtranslator module Readers module Fgdc module AlbersProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.2 (albers) - Albers Conical Equal Area 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: Albers 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