Returns the equidistant LAT/LON 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
Syntax
| C# | 
|---|
| public static IList<GeoTime> GroundTrack(
	this Satellite sat,
	double t1,
	double t2,
	double kmSpacing,
	double kmLoft
) | 
| Visual Basic | 
|---|
| <ExtensionAttribute> _
Public Shared Function GroundTrack ( _
	sat As Satellite, _
	t1 As Double, _
	t2 As Double, _
	kmSpacing As Double, _
	kmLoft As Double _
) As IList(Of GeoTime) | 
| Visual C++ | 
|---|
| [ExtensionAttribute]
public:
static IList<GeoTime^>^ GroundTrack(
	Satellite^ sat, 
	double t1, 
	double t2, 
	double kmSpacing, 
	double kmLoft
) | 
Parameters
- sat
- Type: Satellite
 The satellite.
- t1
- Type: System..::..Double
 The start time, in minutes-past-epoch.
- t2
- Type: System..::..Double
 The end time, in minutes-past-epoch.
- kmSpacing
- Type: System..::..Double
 Distance, in kilometers, between each point in the ground track.
- kmLoft
- Type: System..::..Double
 The desired height of the ground track points above 
            the Earth ellipsoid model, in kilometers.
Return Value
            A list of equidistant LAT/LON coordinate points that define the subpoint locations
            of the satellite over the given time period. The last point in the list
            corresponds to time "t2" regardless of distance spacing.
            
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
See Also