Class: MD_SpatialRepresentationTypeCode

Inherits:
Object
  • Object
show all
Defined in:
lib/adiwg/mdtranslator/writers/iso19115_2/codelists/code_spatialRepresentationType.rb

Overview

from www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml History: Stan Smith 2013-10-21 original script

Stan Smith 2014-10-15 allow non-ISO codesNames to be rendered

Instance Method Summary collapse

Constructor Details

#initialize(xml) ⇒ MD_SpatialRepresentationTypeCode

Returns a new instance of MD_SpatialRepresentationTypeCode.



9
10
11
# File 'lib/adiwg/mdtranslator/writers/iso19115_2/codelists/code_spatialRepresentationType.rb', line 9

def initialize(xml)
  @xml = xml
end

Instance Method Details

#writeXML(codeName) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/adiwg/mdtranslator/writers/iso19115_2/codelists/code_spatialRepresentationType.rb', line 13

def writeXML(codeName)
  case(codeName)
    when 'vector' then codeID = '001'
    when 'grid' then codeID = '002'
    when 'textTable' then codeID = '003'
    when 'tin' then codeID = '004'
    when 'stereoModel' then codeID = '005'
    when 'video' then codeID = '006'
    else
      codeID = 'non-ISO codeName'
  end

  # write xml
  @xml.tag!('gmd:MD_SpatialRepresentationTypeCode',{:codeList=>'http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode',
                     :codeListValue=>"#{codeName}",
                     :codeSpace=>"#{codeID}"})
end