\brief Return the data axis to CRS axis mapping strategy. * * See OGRSpatialReference::GetAxisMappingStrategy() * @since GDAL 3.0 */
| 12677 | * @since GDAL 3.0 |
| 12678 | */ |
| 12679 | OSRAxisMappingStrategy OSRGetAxisMappingStrategy(OGRSpatialReferenceH hSRS) |
| 12680 | { |
| 12681 | VALIDATE_POINTER1(hSRS, "OSRGetAxisMappingStrategy", OAMS_CUSTOM); |
| 12682 | |
| 12683 | return OGRSpatialReference::FromHandle(hSRS)->GetAxisMappingStrategy(); |
| 12684 | } |
| 12685 | |
| 12686 | /************************************************************************/ |
| 12687 | /* SetAxisMappingStrategy() */ |
nothing calls this directly
no test coverage detected