STK AgRadarPluginSend comments on this topic.
ConvertCBFCartesianToLLAArray Method (IAgStkRadarPosVelProvider)
See Also
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.
Windows





Windows & Linux

Description

Converts the supplied central body fixed vector into latitude, longitude, and altitude and returns the values as an array of length 3 where the latitude is array(0), longitude is array(1), and altitude is array(2). All values in radians.

Syntax

[Visual Basic .NET]
Public Function ConvertCBFCartesianToLLAArray( _
    ByVal x As Double, _
    ByVal y As Double, _
    ByVal z As Double _
) As System.Array
[C#]
public System.Array ConvertCBFCartesianToLLAArray(
    double x,
    double y,
    double z
);
[Managed C++]
public: System::Array ConvertCBFCartesianToLLAArray(
    double x,
    double y,
    double z
);
[Unmanaged C++]
public: HRESULT ConvertCBFCartesianToLLAArray(
    double x,
    double y,
    double z,
    SAFEARRAY * * ppArray
);
[Java]
public AgSafeArray convertCBFCartesianToLLAArray(
    double x,
    double y,
    double z
);

Parameters

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.

Remarks

The current central body of the %IAgStkRadarPosVelProvider:AgStkRadar~IAgStkRadarPosVelProvider% object is used do the conversion.

See Also

© 2024 Analytical Graphics, Inc. All Rights Reserved.