Sha256: 10ee48345e7562d9e60658f6fc19ea679fd7f19a696481d3177ad325a2d336d6
Contents?: true
Size: 1.72 KB
Versions: 32
Compression:
Stored size: 1.72 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - azimuth equidistant # 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 AzimuthEquidistantProjection def self.unpack(xParams, hProjection, hResponseObj) # map projection 4.1.2.1.3 (azimequi) - Azimuthal Equidistant unless xParams.empty? paramCount = 0 # -> 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 == 4 return hProjection else hResponseObj[:readerExecutionMessages] << 'WARNING: FGDC reader: Azimuth Equidistant 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