19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/adiwg/mdtranslator/readers/fgdc/modules/module_verticalDatum.rb', line 19
def self.unpack(xVerticalRef, hResourceInfo, hResponseObj)
xAltSys = xVerticalRef.xpath('./altsys')
unless xAltSys.empty?
hRefSystem = VerticalAltitude.unpack(xAltSys, hResponseObj)
unless hRefSystem.nil?
hResourceInfo[:spatialReferenceSystems] << hRefSystem
end
end
xDepthSys = xVerticalRef.xpath('./depthsys')
unless xDepthSys.empty?
hRefSystem = VerticalDepth.unpack(xDepthSys, hResponseObj)
unless hRefSystem.nil?
hResourceInfo[:spatialReferenceSystems] << hRefSystem
end
end
return hResourceInfo
end
|