STK ObjectsSend comments on this topic.
Add Method (IAgVeRealtimeLLAPoints)
See Also
Time
Lat
Lon
Alt
LatRate
LonRate
AltRate
Windows





Windows & Linux

Description

Adds an ephemeris point using position and velocity. Epoch uses DateFormat dimension. Lat uses Latitude dimension. Lon uses Longitude dimension. Alt uses Distance dimension.

Syntax

[Visual Basic .NET]
Public Sub Add( _
    ByVal Time As System.Object, _
    ByVal Lat As Double, _
    ByVal Lon As Double, _
    ByVal Alt As Double, _
    ByVal LatRate As Double, _
    ByVal LonRate As Double, _
    ByVal AltRate As Double _
)
[C#]
public void Add(
    System.Object Time,
    double Lat,
    double Lon,
    double Alt,
    double LatRate,
    double LonRate,
    double AltRate
);
[Managed C++]
public: void Add(
    VARIANT Time,
    double Lat,
    double Lon,
    double Alt,
    double LatRate,
    double LonRate,
    double AltRate
);
[Unmanaged C++]
public: HRESULT Add(
    VARIANT Time,
    double Lat,
    double Lon,
    double Alt,
    double LatRate,
    double LonRate,
    double AltRate
);
[Java]
public void add(
    AgVariant Time,
    double Lat,
    double Lon,
    double Alt,
    double LatRate,
    double LonRate,
    double AltRate
);
[Python - STK API ]
def Add(self, Time:typing.Any, Lat:float, Lon:float, Alt:float, LatRate:float, LonRate:float, AltRate:float) -> None:

Parameters

Time
Lat
Lon
Alt
LatRate
LonRate
AltRate

See Also

Example

Add realtime LLA positions
[C#]
IAgVeRealtimeLLAPoints points = propagator.PointBuilder.LLA;
points.Add("1 Jan 2012 12:00:00.000", 39.693, -76.399, 0.039, 0.03458, 0.01223, 0.05402);
Add realtime LLA positions
[Visual Basic .NET]
Dim points As IAgVeRealtimeLLAPoints = propagator.PointBuilder.LLA
points.Add("1 Jan 2012 12:00:00.000", 39.693, -76.399, 0.039, 0.03458, 0.01223, _
	0.05402)
© 2024 Analytical Graphics, Inc. All Rights Reserved.