EllipsoidCartographicToCartesian Method (MotionCartographic, Int32) |
Converts the motion given in terms of planetodetic cartographic coordinates to motion in cartesian 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 Motion<Cartesian> CartographicToCartesian(
Motion<Cartographic> cartographicMotion,
int order
)
Public Function CartographicToCartesian (
cartographicMotion As Motion(Of Cartographic),
order As Integer
) As Motion(Of Cartesian)
public:
Motion<Cartesian> CartographicToCartesian(
Motion<Cartographic> cartographicMotion,
int order
)
member CartographicToCartesian :
cartographicMotion : Motion<Cartographic> *
order : int -> Motion<Cartesian>
Parameters
- cartographicMotion
- Type: AGI.FoundationMotionCartographic
The planetodetic cartographic motion to convert. - order
- Type: SystemInt32
The order of the highest derivative to convert. To convert just the position, pass 0 for this value. To convert velocity as well, pass 1.
Return Value
Type:
MotionCartesianThe cartesian equivalent of the specified cartographic motion.
Remarks
The cartographic position and velocity must be in a fixed reference frame
centered on the center of mass of this ellipsoid.
See Also