| 384 | |
| 385 | |
| 386 | bool SpatialReference::isGeographic() const |
| 387 | { |
| 388 | OGRScopedSpatialReference current = ogrCreateSrs(m_wkt, m_epoch); |
| 389 | if (!current) |
| 390 | return false; |
| 391 | |
| 392 | bool output = current->IsGeographic(); |
| 393 | return output; |
| 394 | } |
| 395 | |
| 396 | |
| 397 | bool SpatialReference::isGeocentric() const |
no test coverage detected