MartijnBraam / gpsd-py3

Python 3 GPSD client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error data wrong in some cases

MartijnBraam opened this issue · comments

The error data seems slightly GPS specific. Some gps modules requiring a patch:

-        if abs(self.climb) < self.error['c']:
+        if abs(self.climb) < self.error['c'][0]:

This might be different for more gps modules.