Added boatvalue hdop
This commit is contained in:
parent
f9ff302a30
commit
5d7a2bba3c
|
@ -452,6 +452,7 @@ class BoatData():
|
||||||
self.lon = BoatValueGeo("LON", "lon", "deg")
|
self.lon = BoatValueGeo("LON", "lon", "deg")
|
||||||
self.gpsd = BoatValueDate("GPSD", "ISO")
|
self.gpsd = BoatValueDate("GPSD", "ISO")
|
||||||
self.gpst = BoatValueTime("GPST")
|
self.gpst = BoatValueTime("GPST")
|
||||||
|
self.hdop = BoatValue("HDOP")
|
||||||
self.tspos = BoatValueTime("TSPOS")
|
self.tspos = BoatValueTime("TSPOS")
|
||||||
self.sog = BoatValueSpeed("SOG", "kn")
|
self.sog = BoatValueSpeed("SOG", "kn")
|
||||||
self.cog = BoatValueAngle("COG", "deg")
|
self.cog = BoatValueAngle("COG", "deg")
|
||||||
|
@ -533,6 +534,7 @@ class BoatData():
|
||||||
'DTW': self.wpdist,
|
'DTW': self.wpdist,
|
||||||
'GPSD': self.gpsd,
|
'GPSD': self.gpsd,
|
||||||
'GPST': self.gpst,
|
'GPST': self.gpst,
|
||||||
|
'HDOP': self.hdop,
|
||||||
'LAT': self.lat,
|
'LAT': self.lat,
|
||||||
'LON': self.lon,
|
'LON': self.lon,
|
||||||
'PRPOS': self.prpos,
|
'PRPOS': self.prpos,
|
||||||
|
|
Loading…
Reference in New Issue