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 _
)
|
Parameters
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)
|
|