parse and show p_dop
This commit is contained in:
+4
-1
@@ -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']}"
|
||||
|
||||
Reference in New Issue
Block a user