Returns the equal time-spaced Earth Centered Fixed coordinates of a satellite ground track.
Namespace: Zeptomoby.OrbitTools.TrackAssembly: Zeptomoby.OrbitTools.Track (in Zeptomoby.OrbitTools.Track.dll) Version: 1.5.0.0 (1.5.0.0)
Syntax
C# |
---|
public static IList<EcfTime> GroundTrackEcf(
this Satellite sat,
DateTime t1,
DateTime t2,
TimeSpan dt,
double kmLoft
) |
Visual Basic |
---|
<ExtensionAttribute> _
Public Shared Function GroundTrackEcf ( _
sat As Satellite, _
t1 As DateTime, _
t2 As DateTime, _
dt As TimeSpan, _
kmLoft As Double _
) As IList(Of EcfTime) |
Visual C++ |
---|
[ExtensionAttribute]
public:
static IList<EcfTime^>^ GroundTrackEcf(
Satellite^ sat,
DateTime t1,
DateTime t2,
TimeSpan dt,
double kmLoft
) |
Parameters
- sat
- Type: Satellite
The satellite.
- t1
- Type: System..::..DateTime
The start time, in UTC.
- t2
- Type: System..::..DateTime
The end time, in UTC.
- dt
- Type: System..::..TimeSpan
Time elapsed between each point in the ground track.
- kmLoft
- Type: System..::..Double
The height of the ground track points above
the Earth ellipsoid model, in kilometers.
Return Value
A list of ECF coordinate points that define the subpoint locations of the
satellite over the given time period.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Satellite. When you use instance method syntax to call this method, omit the first parameter. For more information, see
or
.
See Also