What is a TLE? What is inclination? What is an ascending node? This week is the gateway from 'satellite' as abstract object to 'satellite' as a geometric trajectory you can plot, predict, and analyze.
Every object in orbit can be described, at any moment, by six numbers: the Keplerian elements. This week introduces them through the most-used real-world format for distributing them: the two-line element set or TLE.
Two Body orbital mechanics gives us six independent parameters that uniquely identify an orbit's shape and orientation in inertial space:
e = 0 is circular; 0 < e < 1 is elliptical; e = 1 is parabolic (escape).i = 0 is equatorial; i = 90 is polar; i > 90 is retrograde.The first five describe the orbit's geometry; the sixth places the satellite on it at a specific time (the epoch).
A two-line element set is a NORAD-defined plain-text format that encodes a satellite's mean Keplerian elements plus a few drag/perturbation terms in 70 characters per line:
ISS (ZARYA)
1 25544U 98067A 24130.50145833 .00018539 00000-0 33188-3 0 9994
2 25544 51.6406 348.5395 0006703 117.9568 358.1729 15.50289267449420
Reading line 2 left to right: catalog number (25544), inclination (51.64°), RAAN (348.54°), eccentricity (0.0006703 — the leading 0. is implicit), argument of perigee (117.96°), mean anomaly (358.17°), mean motion (15.50289267 revs/day).
The mean motion tells you the orbital period: period_minutes = 1440 / mean_motion. For the ISS at 15.50 revs/day, period is 92.9 minutes. From period and Kepler's third law you can back out the semi-major axis (~6,778 km from Earth's center, ~407 km altitude).
Combined with inclination, you can classify the orbit:
i ≈ 0°, altitude < 2000 km. Rare; tropical launch sites only.i matches launch-site latitude. ISS (51.6° = Baikonur latitude).i ≈ 98° (retrograde). Always passes the equator at the same local solar time. Used for Earth observation.i ≈ 0°. Period exactly 24 hours; appears stationary above the equator. Used by GOES, Himawari, and almost every communications satellite.i ≈ 63.4°. Used by Russia for high-latitude coverage where GEO doesn't reach.The U.S. Space Force's 18th Space Defense Squadron generates and publishes TLEs for every tracked object via Space-Track.org (account required) and the public mirror CelesTrak (no account, just curl). TLEs are updated daily and have an "epoch" timestamp — the further you propagate from the epoch, the more error accumulates. After ~1 week, accuracy degrades significantly; after ~30 days, refresh.
The lab fetches the ISS TLE from CelesTrak, parses it with sgp4.tle (or by hand using string slicing per the format spec), and prints each Keplerian element with its physical meaning. By the end you'll be able to look at any TLE and roughly visualize the orbit.
Download the ISS TLE from CelesTrak. Parse it. Identify the 6 Keplerian elements. Compute the orbital period from the mean motion field. Verify against the published value.
Test yourself. Answer key on the certificate-track page (Gold-tier feature: progress tracking and auto-grading).