Converts central body fixed cartesian to latitude, longitude, and altitude.
[Visual Basic .NET] |
---|
Public Sub ConvertCBFCartesianToLLA( _ ByVal x As Double, _ ByVal y As Double, _ ByVal z As Double, _ ByRef latitude As Double, _ ByRef longitude As Double, _ ByRef altitude As Double _ ) |
[C#] |
---|
public void ConvertCBFCartesianToLLA( double x, double y, double z, ref double latitude, ref double longitude, ref double altitude ); |
- 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.
- latitude
- Latitude in radians.
- longitude
- Longitude in radians.
- altitude
- Altitude in meters.
The current central body of the %IAgStkRadarPosVelProvider:AgStkRadar~IAgStkRadarPosVelProvider% object is used do the conversion.