| 418 | } |
| 419 | |
| 420 | double WktParserSem::ProjectionLatitudeOfOrigin() { |
| 421 | double res; |
| 422 | if (isWkt1) { |
| 423 | res = ValueSubDouble(compoundPfx + "PROJCS.PARAMETER", "latitude_of_origin"); |
| 424 | } else { |
| 425 | res = ValueSubDouble(compoundPfx + "PROJCRS.CONVERSION.PARAMETER", "Latitude of natural origin"); |
| 426 | } |
| 427 | return res; |
| 428 | } |
| 429 | double WktParserSem::ProjectionLatitudeOfCenter() { |
| 430 | double res; |
| 431 | if (isWkt1) { |
no outgoing calls
no test coverage detected