Ellipsoid Class
This class represents an ellipsoid used to build a projected coordinate system.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Related API Members
The following members return Ellipsoid objects:
Remarks
This class introduces the following properties.
- Ellipsoid.SemimajorAxis - allows specifying a semimajor axis value used to create an ellipsoid.
- Ellipsoid.SemiminorAxis - returns the value of the ellipsoid’s semiminor axis.
- Ellipsoid.InverseFlattening - allows specifying an inverse flattering value used to create an ellipsoid.
The objects of this class are used by EllipsoidBasedCartesianToGeoConverter class descendants.
Example
<local:MapData FileUri="Shapefiles/Albers/switzerland.shp">
<local:MapData.CoordinateSystem>
<dxm:CartesianSourceCoordinateSystem>
<dxm:CartesianSourceCoordinateSystem.CoordinateConverter>
<dxm:AlbersEqualAreaConicCartesianToGeoConverter StandardParallelN="60.0" StandardParallelS="20.0"
Ellipsoid="{x:Static dxm:Ellipsoid.GRS80}"
ProjectionCenter="40,-96"/>
</dxm:CartesianSourceCoordinateSystem.CoordinateConverter>
</dxm:CartesianSourceCoordinateSystem>
</local:MapData.CoordinateSystem>
</local:MapData>
Inheritance
Object
Ellipsoid
See Also