← Back to carmenta.com
Carmenta Engine SDK Documentation
×

Crs.Crs Constructors

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

Overload List

 NameDescription
Public methodCrs(Projection projection, GeodeticDatum geodeticDatum)Initializes a new instance of the Crs class with the specified Projection and GeodeticDatum.
Public methodCrs(Projection projection, GeodeticDatum geodeticDatum, System.String authority, System.String authorityCode)Initializes a new instance of the Crs class with the specified Projection, GeodeticDatum, Authority and AuthorityCode.

Crs(Projection projection, GeodeticDatum geodeticDatum)

Initializes a new instance of the Crs class with the specified Projection and GeodeticDatum.

Syntax

C#
public Crs (
    Projection projection,
    GeodeticDatum geodeticDatum
)

Parameters

projection
Type: Projection
The map projection.
geodeticDatum
Type: GeodeticDatum
The geodetic datum.

Remarks

Use this constructor if you need to specify projection and geodeticDatum explicitly, and you do not care that Authority and AuthorityCode will not be set in the Crs.

If you do care, you can use the alternative constructor Crs(projection, geodeticDatum, authority, authorityCode).

Or, if you are lucky you can use the static method FromAuthorityAndCode( authority, authorityCode), which constructs the Crs instance automatically. But that method may throw an exception.

Other ways to construct a Crs are listed under the Crs class documentation.

Crs(Projection projection, GeodeticDatum geodeticDatum, System.String authority, System.String authorityCode)

Initializes a new instance of the Crs class with the specified Projection, GeodeticDatum, Authority and AuthorityCode.

Syntax

C#
public Crs (
    Projection projection,
    GeodeticDatum geodeticDatum,
    System.String authority,
    System.String authorityCode
)

Parameters

projection
Type: Projection
The map projection.
geodeticDatum
Type: GeodeticDatum
The geodetic datum.
authority
Type: System.String
The authority, which is often epsg.
authorityCode
Type: System.String
The unique code number for Crs instance, according to the authority.

Remarks

If you already know the Authority and AuthorityCode, it is more convenient to use the FromAuthorityAndCode method, which constructs the Crs instance automatically. But that method may throw an exception, so you can use this constructor instead.

Other ways to construct a Crs are listed under the Crs class documentation.

Platforms

Windows, Linux, Android

See Also

Reference

Crs Class
Core Module

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