TwoLineElementSetDownloadTles Method (String, JulianDate, JulianDate, IWebProxy) | 
 
            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: 25.1.421.0 (25.1.421.0)
Syntaxpublic static List<TwoLineElementSet> DownloadTles(
	string satelliteIdentifier,
	JulianDate startDate,
	JulianDate stopDate,
	IWebProxy proxy
)
Public Shared Function DownloadTles ( 
	satelliteIdentifier As String,
	startDate As JulianDate,
	stopDate As JulianDate,
	proxy As IWebProxy
) As List(Of TwoLineElementSet)
public:
static List<TwoLineElementSet^>^ DownloadTles(
	String^ satelliteIdentifier, 
	JulianDate startDate, 
	JulianDate stopDate, 
	IWebProxy^ proxy
)
static member DownloadTles : 
        satelliteIdentifier : string * 
        startDate : JulianDate * 
        stopDate : JulianDate * 
        proxy : IWebProxy -> 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. - proxy
 - Type: System.NetIWebProxy
Proxy to use when connecting. 
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