Sha256: 35bfdb173859f81c5d04ffac3753a2bd73a496663d420341f801cc24a0c257b7
Contents?: true
Size: 1.03 KB
Versions: 11
Compression:
Stored size: 1.03 KB
Contents
# unpack point # point is coded in GeoJSON # Reader - ADIwg JSON V1 to internal data structure # History: # Stan Smith 2013-11-07 original script # Stan Smith 2014-04-30 reorganized for json schema 0.3.0 # Stan Smith 2014-07-07 resolve require statements using Mdtranslator.reader_module # Stan Smith 2014-12-15 refactored to handle namespacing readers and writers require $ReaderNS.readerModule('module_coordinates') module ADIWG module Mdtranslator module Readers module MdJson module Point def self.unpack(aCoords, geoType) intMetadataClass = InternalMetadata.new intPoint = intMetadataClass.newGeometry intPoint[:geoType] = geoType intPoint[:geometry] = aCoords intPoint[:dimension] = $ReaderNS::Coordinates.getDimension(aCoords) return intPoint end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems