| 427 | return res; |
| 428 | } |
| 429 | double WktParserSem::ProjectionLatitudeOfCenter() { |
| 430 | double res; |
| 431 | if (isWkt1) { |
| 432 | res = ValueSubDouble(compoundPfx + "PROJCS.PARAMETER", "latitude_of_center"); |
| 433 | } else { |
| 434 | res = ValueSubDouble(compoundPfx + "PROJCRS.CONVERSION.PARAMETER", "latitude of projection centre"); |
| 435 | } |
| 436 | return res; |
| 437 | } |
| 438 | double WktParserSem::ProjectionLongitudeOfCenter() { |
| 439 | double res; |
| 440 | if (isWkt1) { |
no outgoing calls
no test coverage detected