| 436 | return res; |
| 437 | } |
| 438 | double WktParserSem::ProjectionLongitudeOfCenter() { |
| 439 | double res; |
| 440 | if (isWkt1) { |
| 441 | res = ValueSubDouble(compoundPfx + "PROJCS.PARAMETER", "longitude_of_center"); |
| 442 | } else { |
| 443 | res = ValueSubDouble(compoundPfx + "PROJCRS.CONVERSION.PARAMETER", "longitude of projection centre"); |
| 444 | } |
| 445 | return res; |
| 446 | } |
| 447 | |
| 448 | double WktParserSem::ProjectionCentralMeridian() { |
| 449 | double res; |
no outgoing calls
no test coverage detected