Sha256: 03f3f46e9f58baf339768e49370302df573e8f1d802d7212a4b670fc593082b2
Contents?: true
Size: 1.83 KB
Versions: 4
Compression:
Stored size: 1.83 KB
Contents
# Reader - fgdc to internal data structure # unpack fgdc map projection - azimuth equidistant # History: # 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 hProjection[:projection] = 'azimuthalEquidistant' hProjection[:projectionName] = 'Azimuthal Equidistant' # -> ReferenceSystemParameters.projection.longitudeOfCentralMeridian paramCount += ProjectionCommon.unpackLongCM(xParams, hProjection, hResponseObj) # -> ReferenceSystemParameters.projection.latitudeOfProjectionOrigin paramCount += ProjectionCommon.unpackLatPO(xParams, hProjection, hResponseObj) # -> ReferenceSystemParameters.projection.falseEasting # -> ReferenceSystemParameters.projection.falseNorthing paramCount += ProjectionCommon.unpackFalseNE(xParams, hProjection, hResponseObj) # verify parameter count if paramCount == 4 return hProjection else hResponseObj[:readerExecutionMessages] << 'azimuth equidistant projection is missing one or more parameters' return nil end end return nil end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems