Sha256: 84fcef07be8149a71a9af65f853e8879ca91e34b820e08387e51d5546eb53c81
Contents?: true
Size: 850 Bytes
Versions: 15
Compression:
Stored size: 850 Bytes
Contents
# ISO <<Class>> MD_GridSpatialRepresentation # writer output in XML # History: # Stan Smith 2019-04-16 original script. require_relative 'class_grid' module ADIWG module Mdtranslator module Writers module Iso19115_1 class MD_GridSpatialRepresentation def initialize(xml, hResponseObj) @xml = xml @hResponseObj = hResponseObj end def writeXML(hGrid, inContext = nil) # classes used gridClass = Grid.new(@xml, @hResponseObj) @xml.tag!('msr:MD_GridSpatialRepresentation') do gridClass.writeXML(hGrid, 'grid representation') end end # writeXML end # MD_GridRepresentation class end end end end
Version data entries
15 entries across 15 versions & 1 rubygems