Sha256: 7e3945978ea14bc81f27fa564a815a8f19f236a352c15599062ef4b699eb44a4
Contents?: true
Size: 1.73 KB
Versions: 38
Compression:
Stored size: 1.73 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - lambert equal area 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 LambertEqualAreaProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.8 (lamberta) - Lambert Azimuthal Equal Area unless xParams.empty? paramCount = 0 # -> 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) # verify parameter count if paramCount == 4 return hProjection else hResponseObj[:readerExecutionMessages] << 'WARNING: Lambert Azimuthal Equal Area projection is missing one or more parameters' end end return nil end end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems