From bdbe45e322e84068ff98aa583e5a000a98b261e4 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 17 Aug 2019 20:01:12 +0200 Subject: [PATCH] recognize third party data (don't think we can parse them) --- owrx/aprs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/owrx/aprs.py b/owrx/aprs.py index ba4f508..b30aa58 100644 --- a/owrx/aprs.py +++ b/owrx/aprs.py @@ -144,6 +144,9 @@ class AprsParser(object): elif information[0] == ">": # status update aprsData.update(self.parseStatusUpate(information[1:])) + elif information[0] == "}": + # third party + aprsData["type"] = "thirdparty" return aprsData