Crs.TryFromAuthorityAndCode Methods
Returns a Coordinate Reference System specified by authority and code.
Overload List
Name | Description | |
---|---|---|
TryFromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode, out Crs crs) | Returns a Coordinate Reference System specified by authority and code. The datum shift choice is Conservative. | |
TryFromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode, DatumShiftChoice datumShiftChoice, out Crs crs) | Returns a Coordinate Reference System specified by authority and code. The datum shift choice can be specified. |
TryFromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode, out Crs crs)
Returns a Coordinate Reference System specified by authority and code. The datum shift choice is Conservative.Syntax
public static System.Boolean TryFromAuthorityAndCode (
System.String crsAuthority,
System.String crsAuthorityCode,
out Crs crs
)
Parameters
The name of an authority, often "epsg".
A unique code for the new instance, according to the authority, for example "3034".
The resulting Coordinate Reference System. This is an output parameter, and it will only be valid if the return value is True.
Return Value
In C# and C++ this method returns True if the combination of authority and code matched a Coordinate Reference System that can be created, and False otherwise. In Java and Python, the actual Coordinate Reference System is returned, or null (Java) or None (Python) if no matching Coordinate Reference System was found.
Remarks
The supported authorities are "EPSG", "ESRI", "IGNF", "CRS" and "OGC". Carmenta methods will regard authority strings as case insensitive.
TryFromAuthorityAndCode(System.String crsAuthority, System.String crsAuthorityCode, DatumShiftChoice datumShiftChoice, out Crs crs)
Returns a Coordinate Reference System specified by authority and code. The datum shift choice can be specified.Syntax
public static System.Boolean TryFromAuthorityAndCode (
System.String crsAuthority,
System.String crsAuthorityCode,
DatumShiftChoice datumShiftChoice,
out Crs crs
)
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).
The resulting Coordinate Reference System. This is an output parameter, and it will only be valid if the return value is True.
Return Value
In C# and C++ this method returns True if the combination of authority and code matched a Coordinate Reference System that can be created, and False otherwise. In Java and Python, the actual Coordinate Reference System is returned, or null (Java) or None (Python) if no matching Coordinate Reference System was found.
Remarks
The supported authorities are "EPSG", "ESRI", "IGNF", "CRS" and "OGC". Carmenta methods will regard authority strings as case insensitive.
Platforms
Windows, Linux, Android