* \brief Set the user visible LOCAL_CS name. * * This function is the same as OGRSpatialReference::SetLocalCS() */
| 5514 | * This function is the same as OGRSpatialReference::SetLocalCS() |
| 5515 | */ |
| 5516 | OGRErr OSRSetLocalCS(OGRSpatialReferenceH hSRS, const char *pszName) |
| 5517 | |
| 5518 | { |
| 5519 | VALIDATE_POINTER1(hSRS, "OSRSetLocalCS", OGRERR_FAILURE); |
| 5520 | |
| 5521 | return ToPointer(hSRS)->SetLocalCS(pszName); |
| 5522 | } |
| 5523 | |
| 5524 | /************************************************************************/ |
| 5525 | /* SetGeocCS() */ |
nothing calls this directly
no test coverage detected