MCPcopy Create free account
hub / github.com/PDAL/PDAL / isGeographic

Method isGeographic

pdal/SpatialReference.cpp:386–394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384
385
386bool 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
397bool SpatialReference::isGeocentric() const

Callers 4

createSpatialFiltersMethod · 0.80
initializeMethod · 0.80
doneMethod · 0.80
getPROJJSONFunction · 0.80

Calls 1

ogrCreateSrsFunction · 0.85

Tested by

no test coverage detected