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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# File 'lib/adiwg/mdtranslator/readers/mdJson/modules/module_referenceSystemParameters.rb', line 19
def self.unpack(hParams, responseObj, inContext = nil)
@MessagePath = ADIWG::Mdtranslator::Readers::MdJson::MdJson
if hParams.empty?
@MessagePath.issueWarning(660, responseObj, inContext)
return nil
end
intMetadataClass = InternalMetadata.new
intParamSet = intMetadataClass.newReferenceSystemParameterSet
outContext = 'reference system parameter set'
outContext = inContext + ' ' + outContext unless inContext.nil?
haveParams = false
if hParams.has_key?('projection')
unless hParams['projection'].empty?
hReturn = ProjectionParameters.unpack(hParams['projection'], responseObj, outContext)
unless hReturn.nil?
intParamSet[:projection] = hReturn
haveParams = true
end
end
end
if hParams.has_key?('geodetic')
unless hParams['geodetic'].empty?
hReturn = Geodetic.unpack(hParams['geodetic'], responseObj, outContext)
unless hReturn.nil?
intParamSet[:geodetic] = hReturn
haveParams = true
end
end
end
if hParams.has_key?('verticalDatum')
unless hParams['verticalDatum'].empty?
hReturn = VerticalDatum.unpack(hParams['verticalDatum'], responseObj, outContext)
unless hReturn.nil?
intParamSet[:verticalDatum] = hReturn
haveParams = true
end
end
end
unless haveParams
@MessagePath.issueWarning(661, responseObj, inContext)
end
return intParamSet
end
|