# ISO <> 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