parse and show p_dop

This commit is contained in:
2026-05-19 10:38:41 +02:00
parent f0d49a3a7c
commit f3a3f9b5a3
4 changed files with 51 additions and 25 deletions
+4 -1
View File
@@ -165,8 +165,11 @@ class SinglePlotPanel(QWidget):
active_keys: set[str] = set()
if self._field == "pdop":
if pdop is None:
return
active_keys.add("PDOP")
self._push("PDOP", ts, pdop if pdop is not None else float("nan"))
print(f"PDOP: {pdop}")
self._push("PDOP", ts, pdop)
else:
for sat in sats:
key = f"{GNSS_NAMES.get(sat['gnssId'], '?')}-{sat['svId']}"