Crs.AuthorityCode Property
Gets the unique code for the Crs instance, according to the Authority, for example "3034".
Syntax
public System.String AuthorityCode { get; }
Property Value
Default: ""
A unique code, usually a number, that has been assigned to the Crs instance by the Authority.
Remarks
You can set the AuthorityCode property when you construct a Crs manually in application code, if you use the constructor Crs(projection, geodeticDatum, authority, authorityCode). The property can also be set in a Crs that is created by FromAuthorityAndCode or by FromWellKnownText, or by a DataSet that reads the Crs specification from file.
When you create a Crs in Carmenta Studio, you can either
Specify Authority and AuthorityCode, and omit GeodeticDatum and Projection. This will cause Carmenta Engine to construct the Crs by calling the FromAuthorityAndCode method. However, this method may throw an exception, and Carmenta Studio cannot warn about an exception in advance. You can increase the chance of success by setting DatumShiftChoice = Lenient. In this usage, the Authority must be "EPSG", "ESRI", "IGNF", "CRS" or "OGC", although Carmenta methods will regard such a string as case insensitive.
Or, you can specify both the GeodeticDatum and Projection. This will cause Carmenta Engine to use one of the ordinary Crs constructors. In this case, you may specify the Authority and AuthorityCode as well; these are often unnecessary since they are treated as comments in most of Carmenta Engine, but they are needed for the Crs of an OgcWmsLayer.
Platforms
Windows, Linux, Android