Converts latitude, longitude, and altitude to central body fixed cartesian.
[Visual Basic .NET] |
---|
Public Sub ConvertLLAToCBFCartesian( _ ByVal latitude As Double, _ ByVal longitude As Double, _ ByVal altitude As Double, _ ByRef x As Double, _ ByRef y As Double, _ ByRef z As Double _ ) |
[C#] |
---|
public void ConvertLLAToCBFCartesian( double latitude, double longitude, double altitude, ref double x, ref double y, ref double z ); |
- latitude
- Latitude in radians.
- longitude
- Longitude in radians.
- altitude
- Altitude in meters.
- x
- X component of the central body fixed vector in meters.
- y
- Y component of the central body fixed vector in meters.
- z
- Z component of the central body fixed vector in meters.
The conversion uses the %IAgStkRadarPosVelProvider:AgStkRadar~IAgStkRadarPosVelProvider% objects current central body.