From 4264a60a52ca883b986d197ed12baa6d4f65a28f Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Thu, 24 Aug 2023 02:49:29 +0200 Subject: [PATCH] all-call reply --- owrx/adsb/modes.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/owrx/adsb/modes.py b/owrx/adsb/modes.py index d54309dd..4bc570b3 100644 --- a/owrx/adsb/modes.py +++ b/owrx/adsb/modes.py @@ -177,6 +177,10 @@ class ModeSParser(PickleModule): # aircraft operation status pass + elif format == 11: + # Mode-S All-call reply + message["icao"] = input[1:4].hex() + if "lat" in message and "lon" in message: loc = AirplaneLocation(message) Map.getSharedInstance().updateLocation({"callsign": icao}, loc, "ADS-B", None)