Sha256: 868d150f83a36242f5fb904fcd1c57d71c98cf485683f227d192db245bb141e8
Contents?: true
Size: 1.26 KB
Versions: 16
Compression:
Stored size: 1.26 KB
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 # Stan Smith 2015-06-22 replace global ($response) with passed in object (responseObj) # Stan Smith 2015-07-14 refactored to make iso19110 independent of iso19115_2 classes # Stan Smith 2015-07-14 refactored to eliminate namespace globals $WriterNS and $IsoNS module ADIWG module Mdtranslator module Writers module Iso19115_2 class MD_Constraints def initialize(xml, responseObj) @xml = xml @responseObj = responseObj 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
16 entries across 16 versions & 1 rubygems