* \brief Fetch linear projection units. * * This function is the same as OGRSpatialReference::GetTargetLinearUnits() * */
| 3387 | * |
| 3388 | */ |
| 3389 | double OSRGetTargetLinearUnits(OGRSpatialReferenceH hSRS, |
| 3390 | const char *pszTargetKey, char **ppszName) |
| 3391 | |
| 3392 | { |
| 3393 | VALIDATE_POINTER1(hSRS, "OSRGetTargetLinearUnits", 0); |
| 3394 | |
| 3395 | return ToPointer(hSRS)->GetTargetLinearUnits( |
| 3396 | pszTargetKey, const_cast<const char **>(ppszName)); |
| 3397 | } |
| 3398 | |
| 3399 | /************************************************************************/ |
| 3400 | /* GetPrimeMeridian() */ |
nothing calls this directly
no test coverage detected