Goal
Evaluate and (if feasible) extract flight tracks for other aircraft — beyond the 4+1 curated in #262 — from the raw .RS3 sensor recordings in the 84 RADES 9/11 FOIA release, to enrich the Flight Tracker with real radar-derived traffic.
What the raw data is
Data/Raw/USAF/*.RS3 — binary radar message streams from NEADS/SEADS sensors covering the northeast US, roughly 09:30–16:30 UTC on 2001-09-11 (filenames encode Julian day 254 + UTC half-hour blocks). Contains every aircraft those radars saw, not just the incident flights.
- Format findings so far:
"RADES Sensor Data" header; 99 99 FF FF message separators; little-endian Unix-epoch timestamps confirmed (e.g. 0x3B9DF5B8 = 2001-09-11 11:30:00 UTC); per-message range/azimuth/Mode 3/Mode C field encodings not yet decoded; no public parser exists (searched).
Path A — RS3 app export (unblocks analysis without reverse-engineering)
The release bundles the RS3 viewer (Windows). RS3 can export per-return query CSVs with computed lat/lon (Exp_Query.csv in the Pentagon products proves the format: Id,Trk,Time,MsgType,Range,AzDegs,Height,MC,M3,M2,Lat,Lon,...). Export instructions for a Windows XP session are being prepared; the exported CSVs feed the same analysis pipeline as #262.
Path B — binary parser (fallback/scale)
Finish reverse-engineering the message layout (validate against known returns from the #262 Excel data and Exp_Query.csv).
The hard problem — track→flight identity
Radar returns carry Mode 3 squawk codes, not flight numbers; beacon-code assignments for 2001-09-11 are not public. Correlating anonymous radar tracks to BTS flights will need heuristics (departure airport + wheels-off time from BTS vs track origin, squawk continuity). Expect a correlated subset, not full coverage.
Tier 1 (the 4 hijacked flights + GOFER06 from RADES's already-attributed Excel products) is #262.
Goal
Evaluate and (if feasible) extract flight tracks for other aircraft — beyond the 4+1 curated in #262 — from the raw
.RS3sensor recordings in the 84 RADES 9/11 FOIA release, to enrich the Flight Tracker with real radar-derived traffic.What the raw data is
Data/Raw/USAF/*.RS3— binary radar message streams from NEADS/SEADS sensors covering the northeast US, roughly 09:30–16:30 UTC on 2001-09-11 (filenames encode Julian day 254 + UTC half-hour blocks). Contains every aircraft those radars saw, not just the incident flights."RADES Sensor Data"header;99 99 FF FFmessage separators; little-endian Unix-epoch timestamps confirmed (e.g.0x3B9DF5B8= 2001-09-11 11:30:00 UTC); per-message range/azimuth/Mode 3/Mode C field encodings not yet decoded; no public parser exists (searched).Path A — RS3 app export (unblocks analysis without reverse-engineering)
The release bundles the RS3 viewer (Windows). RS3 can export per-return query CSVs with computed lat/lon (
Exp_Query.csvin the Pentagon products proves the format:Id,Trk,Time,MsgType,Range,AzDegs,Height,MC,M3,M2,Lat,Lon,...). Export instructions for a Windows XP session are being prepared; the exported CSVs feed the same analysis pipeline as #262.Path B — binary parser (fallback/scale)
Finish reverse-engineering the message layout (validate against known returns from the #262 Excel data and
Exp_Query.csv).The hard problem — track→flight identity
Radar returns carry Mode 3 squawk codes, not flight numbers; beacon-code assignments for 2001-09-11 are not public. Correlating anonymous radar tracks to BTS flights will need heuristics (departure airport + wheels-off time from BTS vs track origin, squawk continuity). Expect a correlated subset, not full coverage.
Tier 1 (the 4 hijacked flights + GOFER06 from RADES's already-attributed Excel products) is #262.