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
|
# File 'lib/adiwg/mdtranslator/readers/fgdc/modules/mapProjections/projection_polarStereo.rb', line 19
def self.unpack(xParams, hProjection, hResponseObj)
unless xParams.empty?
paramCount = 0
paramCount += ProjectionCommon.unpackVSLong(xParams, hProjection)
paramCount += ProjectionCommon.unpackStandParallel(xParams, hProjection)
paramCount += ProjectionCommon.unpackSFPO(xParams, hProjection)
paramCount += ProjectionCommon.unpackLatPC(xParams, hProjection)
paramCount += ProjectionCommon.unpackFalseNE(xParams, hProjection)
if paramCount == 4
return hProjection
else
hResponseObj[:readerExecutionMessages] <<
'WARNING: FGDC reader: Polar Stereographic projection is missing one or more parameters'
end
end
return nil
end
|