← Back to carmenta.com
Carmenta Engine SDK Documentation
×

Crs Class

Defines how coordinates should be interpreted and mapped to earth.

Namespace: Carmenta.Engine
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Thread safety: Members defined in this class are thread-safe. Show

Syntax

C#
public class Crs : ResourceObject

Remarks

A Crs object defines a coordinate reference system that tells how coordinates should be interpreted and mapped to earth. A CRS can be attached to a whole DataSet or to individual features in a data set to define how the stored coordinates should be interpreted. A View also needs a CRS to define how coordinates should be reprojected before presentation, so that all geographic objects can be presented together, even if they were originally expressed in different kinds of coordinates. The reprojection of coordinates usually happens automatically, but can be controlled by a ProjectOperator (see When are things reprojected?). There are also explicit reprojection methods in the Crs class.

A CRS consists of two major components: the GeodeticDatum that gives the size, shape and position of an ellipsoid that models the earth, and the Projection that flattens the ellipsoid surface to a plane.

See also the Coordinate Systems and the Glossary.

CRS construction

There are many ways to construct a CRS.

  • Automatic: Many datasets can figure out and construct their CRS automatically from the data files.

  • Predefined: Some common coordinate reference systems are predefined as static properties of the Crs class (for example Wgs84LongLat), or available via the static Wgs84Utm method. In Carmenta Studio, all these are available in the drop-down list when you choose a CRS for a view or a dataset.

  • Manually: Construct a Projection and a GeodeticDatum first, and use them as arguments to one of the Crs constructors. Or in Carmenta Studio, assign them as properties of a new Crs instance.

  • Authority and code: You can construct a Crs from the name of an authority like EPSG and a unique code that the authority has assigned to that CRS. See CRS Authorities for more background. From an application, you can call the static FromAuthorityAndCode method. In Carmenta Studio, you would make a new Crs instance as above, but only specify the Authority and AuthorityCode. Sometimes, you will have to let DatumShiftChoice be Lenient.

  • Well-Known Text: An application can use the FromWellKnownText method to construct a CRS from Well-Known Text syntax. (Carmenta Studio does not support this syntax.)

  • Area of use: The FromArea method constructs a reasonable CRS for a given area. This method is mainly intended to simplify calculations in a ScriptOperator or a custom operator.

Geodetic methods

There are also geodetic methods like scale, distance, angle, azimuth, great-circle, and rhumb line calculations. When the input or output of these geodetic methods are geographic data (points or lines), they are expressed in projected coordinates. Internally, however, the methods will unproject the data to longitude and latitude, compute the results with formulas for the ellipsoid, and then project the result. Therefore, the accuracy of these calculations does not depend on the properties of the projection, except for the fundamental requirement that UnprojectToLongLat(ProjectFromLongLat(p)) should equal p with high accuracy. This requirement is met by most projections in Carmenta Engine, the exceptions being OrthographicProjection on the backside of the Earth (which cannot be projected at all), and some national projections outside their proper area of use.

If you are certain that your geographic data are always within the good area of the projection, it may be better to compute directly with projected coordinates, using plane geometry formulas, which should be more efficient. The Geometry classes contain many useful methods for plane geometry, and it is much easier to find published algorithms for plane geometry than for ellipsoid geometry. However, you run the risk of developing an application that can be accurate only within a limited region: it may be impossible to cover a large country, like Russia, with a single projection that is accurate enough.

See also the article Calculating with coordinates

Geodetic accuracy

The geodetic methods work on the surface of the reference Ellipsoid (which is part of the GeodeticDatum). It is important to remember that this is a simple mathematical model of a complex world, and that the accuracy claimed for the geodetic methods refers only to the mathematical model. For example, we claim that Length can compute the great-circle distance with millimeter accuracy between two arbitrary points on the earth, but there are many reasons why the true distance (whatever that means) can be different.

  • A vehicle is not always on sea level altitude. If an airplane flies at an altitude of 10 km, the distance it covers is 0.16 percent longer than the distance along the ellipsoid surface.

  • If the geodetic datum is old (let us say, measured before the 1960s), its graticule will have significant irregularities due to measuring errors. For example, if your Crs uses the British datum OSGB36, the result from Length may be wrong by 5 - 10 meters. (It would help to transform the coordinates to WGS84 first, but only if you use a GridFileDatumShift to remove the irregularities; an ordinary HelmertDatumShift cannot remove them.)

  • Continental drift may be significant. For example, the European geodetic datum ETRS89 was defined to be equal to WGS84 on 1 January, 1989. But ETRS89 is attached to the European continent, and follows it on its journey towards northeast (about 2.5 cm per year), whereas WGS84 does not. Coordinates in ETRS89 are often said to be in WGS84, in a loose sense of the word. The same is true for the North American datum NAD83, which is attached to the North American continent. So, a Carmenta Engine user would normally identify both ETRS89 and NAD83 with WGS84, which is quite reasonable. Nevertheless, if Wgs84LongLat.Length gets one point which is really in ETRS89, and another point which is really in NAD83, it is clear that the accuracy will not be 1 millimeter. (If such accuracy is needed, you must distinguish carefully between ETRS89 and WGS84. There is a formula that, given a date, gives the best 7-parameter transform between ETRS89 and WGS84 for that date, thereby modelling the continental drift since 1989).

For detailed explanations, see

Thomas H. Meyer. "Grid, ground, and globe: Distances in the GPS era." Surveying and Land Information Science, vol. 62(2), p. 179-202, September 2002.

Crs equivalence

When Carmenta Engine is going to reproject a feature, it will first check whether the source Crs and the target Crs are functionally equivalent - if so, the feature is left unchanged. This kind of equivalence means only that the coordinates values would be unchanged after reprojection, so equivalent Crs instances may have different names, EPSG codes, and even different axis order according to EPSG.

To be functionally equivalent, two Crs instances must have the same kind of projection (except that an instance of UtmProjection is equivalent to the corresponding instance of TransverseMercatorProjection). And the projection parameters must be the same, within a tolerance that corresponds to 1 millimeter (except that the two standard parallels of a conic projection can be given in either order). The geodetic datums must also be equivalent.

There are some examples of functional equivalence that the equivalence test cannot discover. For example, a LambertConformalConicProjection with two standard parallels has an alternative realization with a single standard parallel (between the two) and a scale factor, but this kind of equivalence is not discovered. But that is harmless: it means only that unnecessary reprojections can be made occasionally.

Literature

The EPSG Geodetic Parameter Dataset, published by IOGP, is the most important authority for CRS information, https://epsg.org.

Richard Knippers, Geometric Aspects of Mapping, is an informative site on both datums and projections http://kartoweb.itc.nl/geometrics.

An excellent introduction to geodetic datums is the Guide to coordinate systems in Great Britain, published by the Ordnance Survey. Most of the guide is relevant outside Great Britain as well, and the specific British parts can be studied as an example of national coordinate reference systems.

Carlos A. Furuti has made a beautiful and inspiring site: Cartographical Map Projections.

Clifford J. Mugnier writes the columns Grids and Datums, published in Photogrammetric Engineering and Remote Sensing. Each column describes the projections and geodetic datums of a particular country.

Inheritance Hierarchy

System.Object (not available in C#)
  EngineObject
    ResourceObject
      Crs

Platforms

Windows, Linux, Android

Crs Members

The Crs type has the following members.

Constructors

NameDescription
CrsInitializes a new instance of the Crs class with the specified Projection and GeodeticDatum, and optionally also Authority and AuthorityCode.

Properties

NameDescription
AuthorityGets the name of an authority, usually epsg, that has assigned a unique code to the Crs instance.
AuthorityCodeGets the unique code for the Crs instance, according to the Authority, for example "3034".
DatumShiftChoiceGets a flag that tells how to choose a default datum shift for the Crs.
Static EtrsLccGets a predefined Crs for Europe, based on a Lambert Conformal Conic projection.
GeodeticDatumGets the geodetic datum, which specifies the size, shape and position of the reference ellipsoid.
IdGets an EPSG authority code as an integer
IsDisposedGets a value that tells whether the current Crs has been disposed. Inherited from EngineObject
NameGets or sets the name of the Crs. Inherited from ResourceObject
NativeHandleGets the native Carmenta Engine kernel object the current Crs represents. Inherited from EngineObject
NominalMetersXYGets the nominal conversion factors between true meters and the length unit of the projection.
Static NonGeoreferencedGets a predefined non-georeferenced Crs.
ProjectionGets the map projection, which defines how longitude/latitude are converted to Easting/Northing on a plane.
Static ScreenCoordinateSystemGets a predefined coordinate system for screen pixels.
IUserProperties.UserPropertiesGets the AttributeSet that contains the user properties. Inherited from IUserProperties
Static Wgs84LongLatGets the predefined Crs that uses WGS84 with LongLat.
Static Wgs84MercatorEllipsoidGets a Crs using WGS84 and a MercatorProjection using ellipsoid formulas.
Static Wgs84MercatorWebGets a Crs using WGS84 and a MercatorProjection using sphere formulas.
Static Wgs84UpsNorthGets a Crs using WGS84 and a projection for the Arctic area.
Static Wgs84UpsSouthGets a Crs using WGS84 and a projection for the Antarctic area.

Methods

NameDescription
AngleFromAzimuthComputes grid azimuth from true azimuth.
Static AuthoritativeAreaOfUseBoundsGives the bounding rectangle(s) of the largest area of use for a Crs, according to an authority.
Static AuthoritativeAreaOfUseCodeGives the code for the largest area of use for a CRS.
Static AuthoritativeAreaOfUseDescriptionGives a text description of the largest area of use for a Crs, according to an authority.
Static AuthoritativeAreaOfUseNameGives the name of the largest area of use for a Crs, according to an authority.
Static AuthoritativeAxisAbbreviationGives an axis abbreviation according to an authority
Static AuthoritativeAxisDirectionGives an axis direction according to an authority
Static AuthoritativeNameGives the name of a Coordinate Reference System, according to an authority.
AzimuthFromAngleComputes true azimuth from grid azimuth.
AzimuthFromLineSegmentOverloaded. Returns the true azimuth from one point towards another.
ChangeDatumToLow-level method transforming longitude and latitude to a new geodetic datum.
CloneCreates a copy of an object. Inherited from EngineObject
DisposeReleases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject
Static EpsgVersionReturns the version of EPSG that is supported.
EqualsDetermines whether this instance is equal to another. Inherited from EngineObject
Static FormatGarsReturns the GARS string for the GARS square that contains the given LongLat point and has the given resolution.
Static FormatLatitudeAsDegreesMinutesFormats a latitude as degrees, minutes and hemisphere.
Static FormatLatitudeAsDegreesMinutesSecondsFormats a latitude as degrees, minutes, seconds and hemisphere.
Static FormatLongitudeAsDegreesMinutesFormats a longitude as degrees, minutes and hemisphere.
Static FormatLongitudeAsDegreesMinutesSecondsFormats a longitude as degrees, minutes, seconds and hemisphere.
Static FormatMgrsOverloaded. Formats a LongLat point to an MGRS reference (Military Grid Reference System).
Static FormatUtmUpsFormats a LongLat point to UTM or UPS notation.
Static FromAreaReturns a new Coordinate Reference System, suitable for a given rectangular area.
Static FromAuthorityAndCodeOverloaded. Returns a Coordinate Reference System specified by authority and code.
Static FromUtmProjectionForPointReturns the WGS84 UTM (or WGS84 UPS) coordinate reference system appropriate for the given point.
Static FromWellKnownTextOverloaded. Returns a new Coordinate Reference System from a definition in Well-Known Text (WKT), throwing an exception on failure.
GetBoundaryReturns a collection of projected points that form the boundary of the valid projected coordinates.
GetLengthUnitReturns the length unit of the coordinates.
IntersectCirclesReturns the points where two circles intersect.
IntersectLineSegmentAndCircleOverloaded. Returns the points where a line segment intersects a circle.
IntersectLineSegmentsOverloaded. Returns the points where two line segment intersect.
LengthOverloaded. Returns the horizontal length of a line.
Length3DOverloaded. Returns the 3D length of a line.
MetersXYReturns local conversion factors between true meters and the length unit of the projection.
NearestPointOnLine2dOverloaded. Returns the point on the given line that is nearest the given point.
NearestPointOnLine3DOverloaded. Returns the point on the given line that is nearest the given point.
NormalizeCyclicEastingReturns the given point with the easting value (x coordinate) normalized.
Static ParseGarsAsAreaParses an GARS string (Global Area Reference System) and returns a square polygon geometry in WGS84 LongLat.
Static ParseLatitudeOverloaded. Reads a latitude from strings representing degrees, minutes, optionally seconds, and hemisphere.
Static ParseLongitudeOverloaded. Reads a longitude from strings representing degrees, minutes, optionally seconds, and hemisphere.
Static ParseMgrsParses an MGRS reference to a LongLat point.
Static ParseMgrsAsAreaParses an MGRS reference into a LongLat polygon geometry.
PitchFromLineSegmentReturns the pitch angle from one point towards another.
PointAlongRay2dThe result of going a given distance from a start point in a given direction.
PointAlongRay3DThe result of going a given 3D distance from a start point in a given direction and pitch.
ProjectFromGeocentricXYZLow-level method converting geocentric X, Y, Z directly to Easting, Northing, Height.
ProjectFromLongLatLow-level methods that converts longitude and latitude to projected coordinates.
ProjectToOverloaded. Reprojects the specified points to a new Crs.
RouteOverloaded. Densifies the given waypoints into a route that follows either great circles, rhumb lines, or straight 3D lines.
ToWellKnownTextOverloaded. Returns a WKT (Well-Known Text) representation of the calling Coordinate Reference System.
Static TryFromAuthorityAndCodeOverloaded. Returns a Coordinate Reference System specified by authority and code.
Static TryFromWellKnownTextOverloaded. Returns a Coordinate Reference System specified by Well-Known Text. Failure will not throw an exception.
Static TryParseMgrsParses a Military Grid Reference to a LongLat point.
UnprojectToGeocentricXYZLow-level method converting Easting, Northing, Height directly to geocentric X, Y, Z.
UnprojectToLongLatLow-level methods that converts projected coordinates back to longitude and latitude.
Static Wgs84UtmReturns a Crs using WGS84 and a UtmProjection specified by zone and hemisphere.

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept