| 395 | |
| 396 | |
| 397 | bool SpatialReference::isGeocentric() const |
| 398 | { |
| 399 | OGRScopedSpatialReference current = ogrCreateSrs(m_wkt, m_epoch); |
| 400 | if (!current) |
| 401 | return false; |
| 402 | |
| 403 | bool output = current->IsGeocentric(); |
| 404 | return output; |
| 405 | } |
| 406 | |
| 407 | |
| 408 | bool SpatialReference::isProjected() const |
no test coverage detected