An orbit is a trajectory in three-dimensional space. To pin it down completely takes six numbers — three for the orbit's size and shape, three for its orientation in space. These are the orbital elements, and they're the standard language astronomers and engineers use to talk about orbits. They're also exactly what's encoded in a TLE — the Two-Line Element set every orbiting object is described by.
Counting why we need exactly six: an orbit's instantaneous state in 3D space is six numbers — three position coordinates and three velocity components. Newton's law of gravity then determines the entire future trajectory from that initial state. So six numbers' worth of information must specify the orbit. The orbital elements are just a different basis for the same six degrees of freedom — one chosen because each parameter has a clear geometric meaning instead of being some abstract Cartesian component.
The six split naturally into three jobs:
Three of the six elements are angles measured against a fixed reference frame. For Earth-orbiting objects the convention is the Earth-centered inertial (ECI) frame, with three axes that don't move with Earth's rotation:
The reference plane is the equatorial plane (the $xy$ plane). The orbital plane is tilted away from it by $i$, hinged about the line of nodes (where the two planes intersect). The ascending node is the point on the orbit where the body crosses the equator going north; $\Omega$ is the angle from $+\hat x$ to that point, measured eastward in the equatorial plane.
The diagram below puts all the geometry on a single illustration. The yellow disc is Earth's equatorial plane; the blue tilted disc is the orbital plane; they meet along the green dashed line of nodes. Within the orbital plane, the bright blue ellipse is the orbit itself, with periapsis marked in pink and the body's current position marked in white. Each of the six elements is labeled at its arc.
The interactive below renders a 3D view of an orbit with all six elements as sliders. The yellow disc is Earth's equatorial plane; the blue ellipse is the orbital plane. The orange arrow is the vernal equinox direction. Drag the sliders one at a time and watch which feature of the orbit changes.
A two-line element set is the standard format for distributing orbital elements. CelesTrak publishes TLEs for tens of thousands of objects in Earth orbit, updated daily. They look like this:
Line 2 carries the orbital elements. From left to right after the satellite catalog number:
| Cols (line 2) | Field | Element | Notes |
|---|---|---|---|
| 9–16 | 51.6400 | i | Inclination, degrees |
| 18–25 | 247.4567 | Ω | Longitude of the ascending node, degrees |
| 27–33 | 0001234 | e | Eccentricity, with implicit decimal point: $e = 0.0001234$ |
| 35–42 | 130.5678 | ω | Argument of periapsis, degrees |
| 44–51 | 125.4321 | M | Mean anomaly at epoch, degrees |
| 53–63 | 15.50000000 | n | Mean motion, revolutions per day |
The semi-major axis isn't there directly — it's encoded in the mean motion via Kepler's third law. From $T = 2\pi\sqrt{a^3/GM_\oplus}$ and $n = 1/T$ in revolutions per second:
$$ a = \left( \frac{GM_\oplus}{(2\pi n)^2} \right)^{1/3} $$For the ISS at 15.50 rev/day = $1.794 \times 10^{-4}$ rev/s, this gives $a \approx 6{,}796\ \mathrm{km}$, or about 425 km of altitude — close to the ISS's actual cruising orbit. The mean anomaly $M$ converts to true anomaly $\nu$ via Kepler's equation (see the appendix). With those six numbers in hand you have the full orbit.
The orbital elements above describe a perfect Keplerian orbit — one where Earth is a point mass and there are no other forces. Real Earth-orbiting satellites are perturbed by Earth's equatorial bulge (which causes nodal precession of $\Omega$ and apsidal precession of $\omega$ — both used deliberately in mission design), atmospheric drag at low altitude, solar radiation pressure, and gravity from the Sun and Moon. Real propagators like SGP4 (the one designed to consume TLEs) include simplified models of these perturbations. The "mean elements" in a TLE are tuned so that SGP4 reproduces the satellite's actual measured position, not so that they describe a perfect Keplerian orbit at face value.
The six orbital elements are the language of every satellite catalog, every mission plan, every TLE that SatView reads. The interactive above is essentially the same parameter set SatView uses to draw thousands of real satellites in real time. With the elements understood, the next module steps off the two-body problem into the three-body world — and the Lagrange points, where SOHO and JWST sit.