Sha256: 9bca0551b4de140225014f69d15fbbdab11b9918561e3167b23582ff35c9f969
Contents?: true
Size: 700 Bytes
Versions: 6
Compression:
Stored size: 700 Bytes
Contents
# unpack line string # line string is coded in GeoJSON # Reader - ADIwg JSON V1 to internal data structure # History: # Stan Smith 2013-11-13 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 require ADIWG::Mdtranslator.reader_module('module_coordinates', $response[:readerVersionUsed]) module Adiwg_LineString def self.unpack(aCoords, geoType) intMetadataClass = InternalMetadata.new intLine = intMetadataClass.newGeometry intLine[:geoType] = geoType intLine[:geometry] = aCoords intLine[:dimension] = Adiwg_Coordinates.getDimension(aCoords) return intLine end end
Version data entries
6 entries across 6 versions & 1 rubygems