Machine-readable page content
Canonical: https://semiotic.nteract.io/examples/apollo-lunar-choreography
The Third Seat: Apollo’s Lunar Choreography
NASA FLIGHT LOG / 1968–1972 / PROCESS SANKEYTHE
THIRD
SEAT
Nine crews aimed at the Moon. Six times, two people descended—and one kept circling alone. Align the missions at launch to see Apollo as a choreography of separation, waiting, reunion, and return.
The questionWhere was every crew-seat, hour by hour?Bands hold people. Ribbons move them. Nothing disappears.
27crew-seatsnine missions × three seats
24peopleLovell, Young, and Cernan flew twice
12moonwalkerstwo from each landing crew
6third seatsone command-module pilot per landing
01 / Read the processThe famous photograph leaves someone out.
A lunar landing is usually remembered as two figures on gray ground. But Apollo was designed around three: the command-module pilot stayed in lunar orbit while the commander and lunar-module pilot descended. The one-person band is not a footnote. It is the line that made reunion—and the trip home—possible.
02 / Mission controlWhere the crew sits, by hour after launch
Nine lunar voyages aligned at launch: 27 crew-seats leave Earth, 24 reach lunar orbit, 12 descend to the surface, and every seat reaches recovery.
band = occupying a phase ribbon = moving between phases
Nine lunar voyages aligned at launch: 27 crew-seats leave Earth, 24 reach lunar orbit, 12 descend to the surface, and every seat reaches recovery.
Analytical alignment, not calendar time: every mission begins at T+0. Ribbon width counts crew-seats; horizontal length is elapsed time. Click a ribbon to load its mission log below.
Selected flight / 1969Apollo 11
The first landing. Armstrong and Aldrin descended while Collins kept lunar orbit.
Mission duration8.1 daysSea of Tranquility
CDRNeil ArmstrongDescended to the lunar surface
CMPMichael CollinsThe third seat: remained in lunar orbit
LMPBuzz AldrinDescended to the lunar surface
- 01Launch
- 02Lunar-orbit insertion
- 03Lunar landing
- 04Lunar liftoff
- 05Trans-Earth injection
- 06Splashdown
For 21.6 hours, Neil Armstrong and Buzz Aldrin occupied the surface lane while Michael Collins carried the one-person lunar-orbit band.
03 / What the shape teaches
The program learned by changing the duration of the split.
First proof20 hoursApollo 8 made lunar orbit real.
Three people stayed together for ten orbits. The chart establishes the unbranched route before the landing choreography appears.
Rehearsal47,400 ftApollo 10 split without touching down.
Two people moved into the low-pass lane while John Young remained above. Every major step except landing was rehearsed.
Operating model2 + 1Six landings repeat one separation.
The surface band is always two crew-seats wide. The lunar-orbit band pinches to one, then grows back to three.
Exception3 → 3Apollo 13 refuses the planned split.
The entire batch enters the lifeboat. Mass conservation turns “successful failure” into a visible claim: nobody is sacrificed to the route.
04 / The Moon becomes a workplaceSix landings, one widening commitment of time
Apollo 11’s surface band lasts 21.6 hours. By Apollo 17 it lasts 75.0—long enough for three EVAs, a rover, sleep periods, and a much broader scientific program. The people count stays two; the temporal footprint changes.
Published NASA mission milestones used for the surface-duration comparison.| Mission | Landing GET | Liftoff GET | Surface duration | Command-module pilot |
|---|
| Apollo 11 | T+4d 06h 46m | T+5d 04h 22m | 21.6 hours | Michael Collins |
|---|
| Apollo 12 | T+4d 14h 33m | T+5d 22h 04m | 31.5 hours | Dick Gordon |
|---|
| Apollo 14 | T+4d 12h 15m | T+5d 21h 46m | 33.5 hours | Stu Roosa |
|---|
| Apollo 15 | T+4d 08h 42m | T+7d 03h 37m | 2.8 days | Al Worden |
|---|
| Apollo 16 | T+4d 08h 30m | T+7d 07h 32m | 3.0 days | Ken Mattingly |
|---|
| Apollo 17 | T+4d 14h 22m | T+7d 17h 22m | 3.1 days | Ron Evans |
|---|
05 / Evidence and transformationReal milestones, one deliberate analytical clock
NASA reports mission events as Ground Elapsed Time. This example transcribes the major milestones and aligns every launch at zero, turning nine historical clocks into one comparable process. “Crew-seat” is the unit because three people flew twice:Jim Lovell (Apollo 8 and Apollo 13); John Young (Apollo 10 and Apollo 16); Gene Cernan (Apollo 10 and Apollo 17).
Landing and liftoff endpoints are published values. The short landing-mission descent and ascent ribbons use declared display intervals because the compact NASA summary does not list every separation and docking. Apollo 10 preserves its published undocking, closest-approach, and docking times while the return ribbon begins at a declared display break after closest approach. Apollo 13’s lifeboat path uses the accident, power-down, PC+2 burn, and splashdown chronology.
06 / Rebuild the viewThe chart is the data model
The special effect is not custom drawing. It is a ProcessSankey with real event time, a capped value scale, hugged lanes, renderer-aware ordering, and crew batches that conserve their value through every split and reunion.
JSX
import { ProcessSankey } from "semiotic" const { nodes, edges, domain } = processDataForFocus("all") <ProcessSankey nodes={nodes} edges={edges} domain={domain} axisTicks={axisTicksForMissionHours(domain[1])} nodeLabel="label" colorBy="category" colorScheme={APOLLO_PHASE_COLORS} pairing="temporal" laneOrder="crossing-min+inside-out" maxValueScale={5} lanePlacement="hug" ribbonLane="both" lifetimeMode="half" showLaneRails showParticles accessibleTable /> // Each edge is one crew batch moving between real mission phases. // All missions use NASA Ground Elapsed Time, aligned at launch. { id: "apollo-11-descent", mission: "Apollo 11", source: "LUNAR ORBIT", target: "SURFACE", value: 2, startTime: 100.26, endTime: 102.76, people: ["Neil Armstrong", "Buzz Aldrin"] }