EllipsoidCartesianToCartographic Method (Cartesian) |
Converts the motion given in terms of cartesian coordinates to motion in cartographic coordinates.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public Cartographic CartesianToCartographic(
Cartesian position
)
Public Function CartesianToCartographic (
position As Cartesian
) As Cartographic
public:
Cartographic CartesianToCartographic(
Cartesian position
)
member CartesianToCartographic :
position : Cartesian -> Cartographic
Parameters
- position
- Type: AGI.Foundation.CoordinatesCartesian
The cartesian coordinates to convert.
Return Value
Type:
CartographicThe cartographic equivalent of the specified cartesian coordinates.
Exceptions Exception | Condition |
---|
ArgumentException |
Thrown when the position parameter is near the center of the ellipsoid.
Use the IsAtCenter(Cartesian) member to test any such points if they will exist in the domain
of the calling function.
|
Remarks
The cartesian coordinates must be in a fixed reference frame centered on the center of mass of this ellipsoid.
See Also