14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# File 'lib/adiwg/mdtranslator/readers/mdJson/modules/module_localProjection.rb', line 14
def self.unpack(hLocal, responseObj, inContext = nil)
@MessagePath = ADIWG::Mdtranslator::Readers::MdJson::MdJson
if hLocal.empty?
@MessagePath.issueWarning(950, responseObj, inContext)
return nil
end
intMetadataClass = InternalMetadata.new
intLocal = intMetadataClass.newLocal
if hLocal.has_key?('fixedToEarth')
if hLocal['fixedToEarth'] === false
intLocal[:fixedToEarth] = false
end
end
if hLocal.has_key?('description')
unless hLocal['description'] == ''
intLocal[:description] = hLocal['description']
end
end
if hLocal.has_key?('georeference')
unless hLocal['georeference'] == ''
intLocal[:georeference] = hLocal['georeference']
end
end
return intLocal
end
|