Sha256: 2bd08656a7530266ecf3bee180bbc0e3b54b43ad05df9e95d51e5b8679535824
Contents?: true
Size: 893 Bytes
Versions: 34
Compression:
Stored size: 893 Bytes
Contents
# ISO <<Class>> MD_GridSpatialRepresentation # writer output in XML # History: # Stan Smith 2015-07-30 original script. require_relative 'class_grid' module ADIWG module Mdtranslator module Writers module Iso19115_2 class MD_GridSpatialRepresentation def initialize(xml, hResponseObj) @xml = xml @hResponseObj = hResponseObj end def writeXML(hGrid) # classes used gridClass = Grid.new(@xml, @hResponseObj) @xml.tag!('gmd:MD_GridSpatialRepresentation') do gridClass.writeXML(hGrid) end end # writeXML end # MD_GridRepresentation class end end end end
Version data entries
34 entries across 34 versions & 1 rubygems