| 408 | return res; |
| 409 | } |
| 410 | double WktParserSem::ProjectionFalseNorthing() { |
| 411 | double res; |
| 412 | if (isWkt1) { |
| 413 | res = ValueSubDouble(compoundPfx + "PROJCS.PARAMETER", "false_northing"); |
| 414 | } else { |
| 415 | res = ValueSubDouble(compoundPfx + "PROJCRS.CONVERSION.PARAMETER", "False northing"); |
| 416 | } |
| 417 | return res; |
| 418 | } |
| 419 | |
| 420 | double WktParserSem::ProjectionLatitudeOfOrigin() { |
| 421 | double res; |
no outgoing calls
no test coverage detected