PolarStereographicProjection Class
Represents the Polar Stereographic map projection, used for polar areas.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class PolarStereographicProjection : Projection
Remarks
This class is a restricted version of the StereographicProjection. The center point must be a pole, so you cannot set a central latitude directly. Instead, the boolean property NorthPole tells which pole is the center. This restriction allows us to implement the StandardParallel property, which can be used as an alternative to the ScaleFactor. (A standard parallel would not make sense for the general StereographicProjection.)
Stereographic projections are both conformal and azimuthal.
Two predefined Coordinate Reference Systems, based on Polar Stereographic, are Crs.Wgs84UpsNorth and Crs.Wgs84UpsSouth (click them for sample maps).
EPSG allows three ways to construct a polar stereographic projection (IOGP Geomatics Guidance Note 7, part 2: Coordinate Conversions and Transformations including Formulas, section 1.3.7.2).
Variant A would be implemented in Carmenta Engine by giving a ScaleFactor but not any StandardParallel.
Variant B would be implemented in Carmenta Engine by giving a StandardParallel, while letting ScaleFactor remain 1.
Variant C is similar to B, in that it is the StandardParallel that is given, not the ScaleFactor. But in addition, the true origin - the point whose projected coordinates are FalseEasting and FalseNorthing - is in variant C on the intersection of the standard parallel and the central meridian, by definition. (In variants A and B, the true origin is the central pole.) Variant C cannot be implemented directly in Carmenta Engine, but it can be emulated. First, define an auxiliary projection, PolarStereographicB, with the same parameters as variant C requires, except that instead of the intended value FN for FalseNorthing, you use a FalseNorthing of zero. This will in effect give you a PolarStereographic constructed as variant B. Use this in an auxiliary Coordinate Reference System, CrsB (with the intended GeodeticDatum). This is not the Crs you want, but the only difference is a constant offset in the northing values. So, take the true origin of variant C, the intersection of the central longitude and the standard parallel, and project to easting and northing by CrsB. Let N be the northing you get. Now, start over and build a new PolarStereographicC projection with the same parameters as PolarStereographicB, except that the FalseNorthing this time is FN - N, instead of zero. This is the projection you want. (To make things interesting: what we call the true origin for variant C, the EPSG calls the false origin. But our usage of "true origin" is widely accepted.)
Accuracy
The Polar Sterographic projection formulas use an ellipsoid model of the Earth and have high accuracy, with one exception: To avoid huge or infinite coordinates, non-standard formulas are used within 10° from the opposite pole. But if you take a projected point p near the opposite pole, and convert it to longitude/latitude and back again, the result is still equal to p. So, for internal use in Carmenta Engine, the effect is just that the projection is non-conformal near the opposite pole. But you should not let Carmenta Engine export or import Polar Stereographic coordinates in the non-conformal region (where the projection is very distorted anyway).
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
Projection
PolarStereographicProjection
Platforms
Windows, Linux, Android
PolarStereographicProjection Members
The PolarStereographicProjection type has the following members.
Constructors
Name | Description |
---|---|
PolarStereographicProjection | Initializes a new instance of the PolarStereographicProjection class from a standard parallel and other parameters (Variant B). |
Properties
Name | Description |
---|---|
Authority | Gets the name of an authority, which is often "epsg". Inherited from Projection |
AuthorityCode | Gets the unique code for the projection instance, according to the Authority, for example "19883". Inherited from Projection |
CentralLongitude | Gets the central longitude, also known as central meridian or longitude of origin. |
FalseEasting | Gets the offset added to the projected x coordinates (the eastings). |
FalseNorthing | Gets the offset added to the projected y coordinates (the northings). |
IsDisposed | Gets a value that tells whether the current PolarStereographicProjection has been disposed. Inherited from EngineObject |
LengthUnit | Gets the length unit of the projected coordinates. |
Gets a pre-defined LongLatProjection instance. Inherited from Projection | |
Name | Gets or sets the name of the PolarStereographicProjection. Inherited from ResourceObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current PolarStereographicProjection represents. Inherited from EngineObject |
NorthPole | Gets a flag indicating which pole is the projection center. |
ScaleFactor | A scale factor, by which all projected coordinates will be multiplied. |
StandardParallel | Gets the latitude of the standard parallel (or a nonsense value if the projection was not constructed from a standard parallel). |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
Returns one of the 120 predefined instances of Universal Transverse Mercator. Inherited from Projection |