* \brief Convert to another equivalent projection * * Currently implemented: * * SRS_PT_MERCATOR_1SP to SRS_PT_MERCATOR_2SP * SRS_PT_MERCATOR_2SP to SRS_PT_MERCATOR_1SP * SRS_PT_LAMBERT_CONFORMAL_CONIC_1SP to * SRS_PT_LAMBERT_CONFORMAL_CONIC_2SP * SRS_PT_LAMBERT_CONFORMAL_CONIC_2SP to * SRS_PT_LAMBERT_CONFORMAL_CONIC_1SP * * * @param hSRS
| 10224 | * |
| 10225 | */ |
| 10226 | OGRSpatialReferenceH |
| 10227 | OSRConvertToOtherProjection(OGRSpatialReferenceH hSRS, |
| 10228 | const char *pszTargetProjection, |
| 10229 | const char *const *papszOptions) |
| 10230 | { |
| 10231 | VALIDATE_POINTER1(hSRS, "OSRConvertToOtherProjection", nullptr); |
| 10232 | return ToHandle(ToPointer(hSRS)->convertToOtherProjection( |
| 10233 | pszTargetProjection, papszOptions)); |
| 10234 | } |
| 10235 | |
| 10236 | /************************************************************************/ |
| 10237 | /* OSRFindMatches() */ |
nothing calls this directly
no test coverage detected