| 399 | } |
| 400 | |
| 401 | double WktParserSem::ProjectionFalseEasting() { |
| 402 | double res; |
| 403 | if (isWkt1) { |
| 404 | res = ValueSubDouble(compoundPfx + "PROJCS.PARAMETER", "false_easting"); |
| 405 | } else { |
| 406 | res = ValueSubDouble(compoundPfx + "PROJCRS.CONVERSION.PARAMETER", "False easting"); |
| 407 | } |
| 408 | return res; |
| 409 | } |
| 410 | double WktParserSem::ProjectionFalseNorthing() { |
| 411 | double res; |
| 412 | if (isWkt1) { |
no outgoing calls
no test coverage detected