Crs.FromAuthorityAndCode Methods
Returns a Coordinate Reference System specified by authority and code.
Overload List
Name | Description | |
---|---|---|
FromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode) | Returns a Coordinate Reference System specified by authority and code. The datum shift choice is Conservative. | |
FromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode, DatumShiftChoice datumShiftChoice) | Returns a Coordinate Reference System specified by authority and code. The datum shift choice can be specified. |
FromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode)
Returns a Coordinate Reference System specified by authority and code. The datum shift choice is Conservative.Syntax
public static Crs FromAuthorityAndCode (
System.String crsAuthority,
System.String crsAuthorityCode
)
Parameters
The name of an authority, often "epsg".
A unique code for the new instance, according to the authority, for example "3034".
Return Value
A Crs specified by an authority and code.
Remarks
The supported authorities are "EPSG", "ESRI", "IGNF", "CRS" and "OGC". Carmenta methods will regard authority strings as case insensitive.
The method can throw an exception
if the given authority is not supported,
if the given code is not used by the authority or was added in a database version more recent than the one supported by Carmenta,
if Carmenta does not support the projection method,
if Carmenta does not know any generally useful datum shift for the geodetic datum. See Coordinate Systems. (To avoid this kind of exception, use the overloaded variant where you can specify a Lenient choice of datum shift.)
FromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode, DatumShiftChoice datumShiftChoice)
Returns a Coordinate Reference System specified by authority and code. The datum shift choice can be specified.Syntax
public static Crs FromAuthorityAndCode (
System.String crsAuthority,
System.String crsAuthorityCode,
DatumShiftChoice datumShiftChoice
)
Parameters
The name of an authority, often "epsg".
A unique code for the new instance, according to the authority, for example "3034".
Tells how the datum shift shall be chosen (Conservative or Lenient).
Return Value
A Crs specified by an authority and code.
Remarks
The supported authorities are "EPSG", "ESRI", "IGNF", "CRS" and "OGC". Carmenta methods will regard authority strings as case insensitive.
The method can throw an exception
if the given authority is not supported,
if the given code is not used by the authority or was added in a database version more recent than the one supported by Carmenta,
if Carmenta does not support the projection method,
if the datumShiftChoice is Conservative and Carmenta does not know any generally useful datum shift for the geodetic datum. See Coordinate Systems.
Platforms
Windows, Linux, Android