Sha256: 6048d20f04b46c40f54e5a1178693fe436ebaca1665459e5b6f4f3d74c40b32e
Contents?: true
Size: 542 Bytes
Versions: 7
Compression:
Stored size: 542 Bytes
Contents
# ISO <<Class>> EX_GeographicDescription # writer output in XML # History: # Stan Smith 2013-06-03 original script # Stan Smith 2014-07-08 modify require statements to function in RubyGem structure require 'class_identifier' class EX_GeographicDescription def initialize(xml) @xml = xml end def writeXML(hElement) # classes used in MD_Metadata idClass = MD_Identifier.new(@xml) @xml.tag!('gmd:EX_GeographicDescription') do @xml.tag!('gmd:geographicIdentifier') do idClass.writeXML(hElement) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems