kopia lustrzana https://github.com/projecthorus/radiosonde_auto_rx
Fix incorect field
rodzic
76ce16d423
commit
875eb8b955
|
|
@ -12,7 +12,7 @@ from queue import Queue
|
||||||
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
|
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
|
||||||
# PATCH - Small changes, or minor feature additions.
|
# PATCH - Small changes, or minor feature additions.
|
||||||
|
|
||||||
__version__ = "1.8.2-beta7"
|
__version__ = "1.8.2-beta8"
|
||||||
|
|
||||||
# Global Variables
|
# Global Variables
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1937,7 +1937,7 @@ class SondeDecoder(object):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Run telemetry from DFM sondes through real-time filter
|
# Run telemetry from DFM sondes through real-time filter
|
||||||
if self.enable_realtime_filter and (_telemetry["model"].startswith("DFM")):
|
if self.enable_realtime_filter and (_telemetry["type"].startswith("DFM")):
|
||||||
# If sonde has already been received, calculate velocity
|
# If sonde has already been received, calculate velocity
|
||||||
velocity = 0
|
velocity = 0
|
||||||
if _telemetry["callsign"] in self.last_positions.keys():
|
if _telemetry["callsign"] in self.last_positions.keys():
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue