<< CL_tle_getConst Trajectory and maneuvers CL_tle_load >>

CelestLab >> Trajectory and maneuvers > CL_tle_getElem

CL_tle_getElem

TLE epoch and associated mean orbital elements (no propagation)

Calling Sequence

[mean_oe, cjd] = CL_tle_getElem(tle, type_oe [, frame, ut1_tref, tt_tref])

Description

Parameters

tle:

TLE structure (size N)

type_oe:

(string) Type of output orbital elements: "kep", "cir", "cireq", "equin" or "pv" (1x1)

frame:

(string, optional) Output frame, see above for details. Default is "ECI".

ut1_tref:

(optional) UT1-TREF [seconds]. Default is %CL_UT1_TREF (1xN or 1x1)

tt_tref:

(optional) TT-TREF [seconds]. Default is %CL_TT_TREF (1xN or 1x1)

mean_oe:

Mean orbital elements (of type given by "type_oe") relative to the specified frame [m, m/s, rad] (6xN)

cjd:

TLE epoch (modified julian date from 1950.0, TREF time scale except if frame == "native") (1xN)

Authors

See also

Examples

str = [..
"1 00005U 58002B   00179.78495062  .00000023  00000-0  28098-4 0  4753"; ..
"2 00005  34.2682 348.7242 1859667 331.7664  19.3264 10.82419157413667" ];
tle = CL_tle_parse(str);
// cjd in TREF, mean_kep relative to ECI
[mean_kep, cjd] = CL_tle_getElem(tle, "kep")

Report an issue
<< CL_tle_getConst Trajectory and maneuvers CL_tle_load >>