\brief Return the data axis to CRS axis mapping strategy. * * * OAMS_TRADITIONAL_GIS_ORDER means that for geographic CRS with * lat/long order, the data will still be long/lat ordered. Similarly for * a projected CRS with northing/easting order, the data will still be * easting/northing ordered. * OAMS_AUTHORITY_COMPLIANT means that the data axis will be identical t
| 12661 | * @since GDAL 3.0 |
| 12662 | */ |
| 12663 | OSRAxisMappingStrategy OGRSpatialReference::GetAxisMappingStrategy() const |
| 12664 | { |
| 12665 | TAKE_OPTIONAL_LOCK(); |
| 12666 | |
| 12667 | return d->m_axisMappingStrategy; |
| 12668 | } |
| 12669 | |
| 12670 | /************************************************************************/ |
| 12671 | /* OSRGetAxisMappingStrategy() */ |
no outgoing calls