Sha256: 57015f6e4ac034d40c2bd05bcf686a7a3cba9f9cff8a0aaab7e02b41486005c5
Contents?: true
Size: 957 Bytes
Versions: 11
Compression:
Stored size: 957 Bytes
Contents
# ISO <<Class>> MD_Constraints # writer output in XML # History: # Stan Smith 2013-10-31 original script # Stan Smith 2014-12-12 refactored to handle namespacing readers and writers module ADIWG module Mdtranslator module Writers module Iso class MD_Constraints def initialize(xml) @xml = xml end def writeXML(aUseCons) @xml.tag!('gmd:MD_Constraints') do aUseCons.each do |useCon| # use constraints - required @xml.tag!('gmd:useLimitation') do @xml.tag!('gco:CharacterString', useCon) end end end end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems