Module 6 of 9 · Curriculum index

Orbital elements

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.

Six numbers, three jobs

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:

  1. Two for the shape and size of the ellipse — semi-major axis $a$ and eccentricity $e$. These are the elements you already know from module 5.
  2. Three for the orientation of the orbital plane in space — inclination $i$, longitude of ascending node $\Omega$, and argument of periapsis $\omega$. These are angles between the orbit and a fixed reference frame.
  3. One for the timing — true anomaly $\nu$, or equivalently mean anomaly $M$ at some epoch. This says where on the orbit the body is right now.

The four reference directions

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.

Six elements, one picture

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.

Diagram
The six classical orbital elements
Three angles set the orientation of the orbital plane in space (Ω, i, ω). Two parameters set the size and shape of the ellipse (a, e). One parameter says where on the ellipse the body currently is (ν).

Try the elements

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.

Interactive
Six elements, one orbit
Click and drag the canvas to rotate the camera. Adjust each element to see what it controls.
3D view requires a browser with WebGL and ES module support. Try Firefox, Chrome, Safari, or Edge from the last few years.
Real satellites:
6796 km
0.000
51°
247°
130°
40°

Decoding a TLE

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:

ISS (ZARYA) 1 25544U 98067A 24015.50000000 .00012345 00000-0 22345-3 0 9999 2 25544 51.6400 247.4567 0001234 130.5678 125.4321 15.50000000350123

Line 2 carries the orbital elements. From left to right after the satellite catalog number:

Cols (line 2)FieldElementNotes
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.

Why TLEs are weirdly cramped. The TLE format dates from the 1960s when NORAD's first satellite-tracking computers had punch-card-era column constraints. Every position is fixed-width with implicit decimal points and embedded checksums. It's astonishingly compact — two 80-column lines define an entire orbit — and it has stayed in use for sixty years because everything understands it. The replacement format, OMM (Orbit Mean Elements Message in XML/JSON), is slowly catching on, but TLEs aren't going anywhere.

What's missing

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.

Where this leads

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.