From 45798de3ec127ea83d80de091f9955ce61ca0f0a Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 22 Dec 2025 12:33:50 +0000 Subject: [PATCH] Add port 30005 to dump1090 JSON endpoint list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dump1090-mutability uses port 30005 for JSON data by default. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- intercept.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/intercept.py b/intercept.py index 49aaa5a..01c11a3 100755 --- a/intercept.py +++ b/intercept.py @@ -12071,8 +12071,10 @@ def parse_adsb_output(process): def poll_dump1090_json(): """Poll dump1090's aircraft.json for decoded lat/lon data.""" json_urls = [ + 'http://localhost:30005/data/aircraft.json', 'http://localhost:8080/data/aircraft.json', 'http://localhost:30003/data/aircraft.json', + 'http://localhost:16601/data/aircraft.json', 'http://localhost:8080/dump1090/data/aircraft.json' ] working_url = None