pub struct TLE {Show 17 fields
pub name: String,
pub norad: String,
pub classification: char,
pub int_desig: String,
pub epoch_year: i32,
pub epoch_day: f64,
pub dn_o2: f64,
pub ddn_o6: f64,
pub bstar: f64,
pub set_num: u32,
pub inc: f64,
pub raan: f64,
pub ecc: f64,
pub argp: f64,
pub M: f64,
pub n: f64,
pub rev_num: u32,
}Expand description
Structure representing a single TLE.
A two-line element set (TLE) is a data format encoding a list of orbital elements of an Earth-orbiting object at a given point in time, the epoch.
All the fields parsed from the TLE are expressed in the same units that are used in the TLE format.
Fields§
§name: StringName of the object.
norad: StringNorad number.
classification: charClassification (U: unclassified, C: classified, S: secret)
int_desig: StringInternational designator (year, launch number, piece).
epoch_year: i32Year of the epoch.
epoch_day: f64Day of the year plus fraction of the day.
dn_o2: f64First time-derivative of the mean motion divided by 2.
ddn_o6: f64Second time-derivative of the mean motion divided by 6.
bstar: f64BSTAR coefficient (Wikipedia).
set_num: u32Element set number.
inc: f64Inclination.
raan: f64Right ascension of the ascending node (Wikipedia).
ecc: f64Eccentricity (0 ≤ ecc < 1).
argp: f64Argument of perigee.
M: f64Mean anomaly.
n: f64Mean motion.
rev_num: u32Revolution number.