Crs.AuthoritativeName Method
Gives the name of a Coordinate Reference System, according to an authority.
AuthoritativeName(System.String crsAuthority, System.String crsAuthorityCode, System.Boolean alphanumeric)
Gives the name of a Coordinate Reference System, according to an authority.Syntax
public static System.String AuthoritativeName (
System.String crsAuthority,
System.String crsAuthorityCode,
System.Boolean alphanumeric
)
Parameters
The name of the authority, usually "epsg".
The unique code for the Crs, according to the authority, for example "3034".
A boolean, telling if we want an alphanumeric name.
Return Value
A string containing the name.
Remarks
The result will be the Crs name from the authority, with " (deprecated)" appended if the authority has deprecated the Crs.
If alphanumeric is False, then the name will be exactly as the authority says. For example,
call | result |
---|---|
authoritativeName( "epsg", "2065", False) | "S-JTSK (Ferro) / Krovak" |
authoritativeName( "epsg", "2056", False) | "CH1903+ / LV95" |
authoritativeName( "epsg", "3349", False) | "WGS 84 / PDC Mercator (deprecated)" |
Otherwise, if alphanumeric is True, the result will be modified to consist of only alphanumeric characters (including underscores). Any sequence of other characters will be replaced by one underscore, except that a slash will be replaced by two underscores, and that a plus character will be replace by the string plus. Finally, leading and trailing underscores will be removed.
call | result |
---|---|
authoritativeName( "epsg", "2065", True) | "S_JTSK_Ferro__Krovak" |
authoritativeName( "epsg", "2056", True) | "CH1903plus__LV95" |
authoritativeName( "epsg", "3349", True) | "WGS_84__PDC_Mercator__deprecated" |
The supported authorities are "EPSG", "ESRI", "IGNF", "CRS" and "OGC". Carmenta methods will regard authority strings as case insensitive.
Platforms
Windows, Linux, Android