MartijnBraam / gpsd-py3

Python 3 GPSD client
105 stars 45 forks source link

Error data wrong in some cases #2

Open MartijnBraam opened 8 years ago

MartijnBraam commented 8 years ago

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.