| 406 | |
| 407 | |
| 408 | bool SpatialReference::isProjected() const |
| 409 | { |
| 410 | OGRScopedSpatialReference current = ogrCreateSrs(m_wkt, m_epoch); |
| 411 | if (!current) |
| 412 | return false; |
| 413 | |
| 414 | bool output = current->IsProjected(); |
| 415 | return output; |
| 416 | } |
| 417 | |
| 418 | std::vector<int> SpatialReference::getAxisOrdering() const |
| 419 | { |
nothing calls this directly
no test coverage detected