Skip to content

Latest commit

 

History

History
123 lines (89 loc) · 3.56 KB

File metadata and controls

123 lines (89 loc) · 3.56 KB

Label: 83

Description

Airline Defined

Examples

Comma Separated

https://globe.adsbexchange.com/?icao=A0566A&showTrace=2024-09-23&timestamp=1727122277
LGAV,KEWR,232011, 40.64,- 74.61, 5004,240,-160.0, 20000

https://globe.adsbexchange.com/?icao=A2A3B5&showTrace=2024-09-24&timestamp=1727177088
VIDP,KEWR,241124, 40.72,- 74.47, 5002,249, 170.1, 13100

https://globe.adsbexchange.com/?icao=A2CB33&showTrace=2024-09-25&timestamp=1727294067
RJAA,KEWR,251954, 40.67,- 74.56, 5001,250,-168.9, 18200

https://globe.adsbexchange.com/?icao=48AE07&showTrace=2024-09-25&timestamp=1727302311
EPWA,KEWR,252211, 40.63,- 74.47, 5004,250, 160.0,  9200

https://globe.adsbexchange.com/?icao=A0F427&showTrace=2024-09-28&timestamp=1727543247
LPPT,KEWR,281707, 40.47,- 74.50, 4942,198, 153.9, 22400

Comma separated fields:

  • 4 character origin airport code
  • 4 character destination airport code
  • DDHHMM, where:
    • DD is the day of month
    • HH:MM is the current UTC time
  • Latitude in decimal degrees
  • Longitude in decimal degrees
  • Altitude
  • Speed in knots
  • Heading
  • Unknown numerical value

The position, altitude, speed, and/or heading may be planned or target values rather than measured values.

Prefix "4DH3 ETAT2 "

https://globe.adsbexchange.com/?icao=478F43&showTrace=2024-09-22&timestamp=1727022863
4DH3 ETAT2  0907/22 ENGM/KEWR .LN-RKO
/ETA 1641

https://globe.adsbexchange.com/?icao=478854&showTrace=2024-09-22&timestamp=1727030707
4DH3 ETAT2  0909/22 EKCH/KEWR .LN-RKS
/ETA 1854

https://globe.adsbexchange.com/?icao=478F47&showTrace=2024-09-29&timestamp=1727628313
4DH3 ETAT2  0907/29 ENGM/KEWR .LN-RKN
/ETA 1654

https://globe.adsbexchange.com/?icao=478854&showTrace=2024-09-29&timestamp=1727630310
4DH3 ETAT2  0903/29 ESSA/KEWR .LN-RKS
/ETA 1727

https://globe.adsbexchange.com/?icao=4AC8A8&showTrace=2024-09-29&timestamp=1727634920
4DH3 ETAT2  0909/29 EKCH/KEWR .SE-REH
/ETA 1844
  • Prefix "4DH3 ETAT2 "
  • XXYY/ZZ, where:
    • XX is unknown
    • YY is unknown
    • ZZ is the day of month
  • AAAA/BBBB, where:
    • AAAA is the 4 character origin airport code
    • BBBB is the 4 character destination airport code
  • Airframe registration
  • "\r\n/ETA " then 4 digits for the estimated time of arrival in UTC, HH:MM

Prefix "001PR"

Example from registration N885GL, ICAO AC2D52 (not an air carrier)

Recorded Sunday, June 19, 2022 11:35:24 UTC

Plane was reporting flight as "XA0001".

001PR19113523N2947.7W09536.51273750177

Parsing in fixed fields

Start End Count Attribute Raw Value Formatted Description
1 3 3 unknown 001 001 possibly flight number or message number
4 5 2 unknown PR PR possibly signifier for Position Report
6 7 2 day 19 19 Day of month (UTC)
8 13 6 time 113523 11:35:23 Time (UTC)
14 14 1 latitude_direction N N Latitude Direction (N or S)
15 20 6 latitude 2947.7 29 47.7 Latitude (degrees and minutes)
21 21 1 longitude_direction W W Longitude Direction (W or E)
22 28 7 longitude 09536.7 095 36.7 Longitude
29 33 5 altitude 12737 12737 Altitude in feet
34 38 5 unknown 50177 50177 unknown

Example from registration N432GH, ICAO A52B2A (not an air carrier)

Recorded Sunday, June 19, 2022 20:57:36 UTC

Plane was reporting flight as "XA0001".

001PR19205732N2956.9W09542.81593860109

Message text field appears identical in format to first example.

Acronyms / Codes

...

Analysis

...