Loads TLEs from files
tle = CL_tle_load(fnames)
Loads two-line elements from files.
The file names are considered in sequence.
The files should contain two-line elements on 2 or 3 lines: two data lines (lines #1 and #2) and one optional description line above line #1.
The status field is set to a non-zero value if parsing errors occur (see CL_tle_parse).
Notes:
The spaces at the beginning or end of a line are ignored.
For the files to be read correctly, one of the following conditions should be true:
-No description line is present in the file
-The description line does not begin with "1" or "2" or its length is not 69
(string) File names or paths (1xP)
Structure containing all the TLEs present in the files (size N)
CNES - DCT/SB/MS
fnames = CL_path("tle_examples.txt", CL_home(), "all"); tle = CL_tle_load(fnames); // show 2nd element of TLE structure tle(2) // show all eccentricities tle.ecc // select TLE indices such that eccentricity is more than 0.01 I = find(tle.ecc > 0.01); tle2 = tle(I) | ![]() | ![]() |