| 528 | |
| 529 | |
| 530 | std::string SpatialReference::prettyWkt(const std::string& wkt) |
| 531 | { |
| 532 | std::string outWkt; |
| 533 | |
| 534 | OGRScopedSpatialReference srs = ogrCreateSrs(wkt); |
| 535 | if (!srs) |
| 536 | return outWkt; |
| 537 | |
| 538 | outWkt = exportToWkt(srs.get(), {"MULTILINE=YES"}); // equivalent to exportToPrettyWkt |
| 539 | return outWkt; |
| 540 | } |
| 541 | |
| 542 | std::string SpatialReference::getWKT1() const |
| 543 | { |
nothing calls this directly
no test coverage detected