<< CL_tle_getElem Trajectory and maneuvers CL_tle_new >>

CelestLab >> Trajectory and maneuvers > CL_tle_load

CL_tle_load

Loads TLEs from files

Calling Sequence

tle = CL_tle_load(fnames)

Description

Parameters

fnames:

(string) File names or paths (1xP)

tle:

Structure containing all the TLEs present in the files (size N)

Authors

See also

Examples

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)

Report an issue
<< CL_tle_getElem Trajectory and maneuvers CL_tle_new >>