Crs.Authority Property
Gets the name of an authority, usually epsg, that has assigned a unique code to the Crs instance.
Syntax
public System.String Authority { get; }
Property Value
Default: "epsg"
The name of an authority that has given a unique code to the Crs. You can usually create a Crs from just authority and AuthorityCode if the authority is "epsg", "esri", "ignf", "crs" or "ogc" (case insensitive).
Remarks
You can set the Authority 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