TwoLineElementSetDownloadTles Method (String, JulianDate, JulianDate) |
Downloads TLE data for a given satellite from an AGI server. Multiple TLEs are returned, spanning the interval provided.
This method connects via HTTPS to ftp.agi.com.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static List<TwoLineElementSet> DownloadTles(
string satelliteIdentifier,
JulianDate startDate,
JulianDate stopDate
)
Public Shared Function DownloadTles (
satelliteIdentifier As String,
startDate As JulianDate,
stopDate As JulianDate
) As List(Of TwoLineElementSet)
public:
static List<TwoLineElementSet^>^ DownloadTles(
String^ satelliteIdentifier,
JulianDate startDate,
JulianDate stopDate
)
static member DownloadTles :
satelliteIdentifier : string *
startDate : JulianDate *
stopDate : JulianDate -> List<TwoLineElementSet>
Parameters
- satelliteIdentifier
- Type: SystemString
The NORAD identifier for the satellite whose TLEs are desired. - startDate
- Type: AGI.Foundation.TimeJulianDate
The start Julian date for the first TLE to return. - stopDate
- Type: AGI.Foundation.TimeJulianDate
the stop Julian date for the last TLE to return.
Return Value
Type:
ListTwoLineElementSet
List of
TwoLineElementSet instances, created from the retrieved TLEs. The first TLE's epoch is just before
startDate
and the last TLE's epoch is just after
stopDate.
Exceptions See Also