summaryrefslogtreecommitdiff
path: root/contrib/gpsData.py
diff options
context:
space:
mode:
authorFred Wright <fw@fwright.net>2016-09-22 16:29:29 -0700
committerGary E. Miller <gem@rellim.com>2016-09-22 18:43:37 -0700
commita6bae1521cb4361122a19e9498ace5ab4d061b50 (patch)
tree8b86ef5d2e2ebd5d9dff66bf0be8ff3b38eccd2c /contrib/gpsData.py
parent85490953859d61abb984ce702355be5b45ff7967 (diff)
downloadgpsd-a6bae1521cb4361122a19e9498ace5ab4d061b50.tar.gz
Fixes contrib/gpsData.py for Python 3.
TESTED: Ran with all supported Python versions. Signed-off-by: Gary E. Miller <gem@rellim.com>
Diffstat (limited to 'contrib/gpsData.py')
-rwxr-xr-xcontrib/gpsData.py47
1 files changed, 26 insertions, 21 deletions
diff --git a/contrib/gpsData.py b/contrib/gpsData.py
index 807a2702..a4769615 100755
--- a/contrib/gpsData.py
+++ b/contrib/gpsData.py
@@ -2,6 +2,11 @@
# Written by Dan Mandle http://dan.mandle.me September 2012
# http://www.danmandle.com/blog/getting-gpsd-to-work-with-python/
# License: GPL 2.0
+
+# This code runs compatibly under Python 2 and 3.x for x >= 2.
+# Preserve this property!
+from __future__ import absolute_import, print_function, division
+
import os
from gps import *
from time import *
@@ -23,7 +28,7 @@ class GpsPoller(threading.Thread):
def run(self):
global gpsd
while gpsp.running:
- gpsd.next() #this will continue to loop and grab EACH set of gpsd info to clear the buffer
+ next(gpsd) #this will continue to loop and grab EACH set of gpsd info to clear the buffer
if __name__ == '__main__':
gpsp = GpsPoller() # create the thread
@@ -35,30 +40,30 @@ if __name__ == '__main__':
os.system('clear')
- print
- print ' GPS reading'
- print '----------------------------------------'
- print 'latitude ' , gpsd.fix.latitude
- print 'longitude ' , gpsd.fix.longitude
- print 'time utc ' , gpsd.utc,' + ', gpsd.fix.time
- print 'altitude (m)' , gpsd.fix.altitude
- print 'eps ' , gpsd.fix.eps
- print 'epx ' , gpsd.fix.epx
- print 'epv ' , gpsd.fix.epv
- print 'ept ' , gpsd.fix.ept
- print 'speed (m/s) ' , gpsd.fix.speed
- print 'climb ' , gpsd.fix.climb
- print 'track ' , gpsd.fix.track
- print 'mode ' , gpsd.fix.mode
- print
- print "%s satellites in view:" % len(gpsd.satellites)
+ print()
+ print(' GPS reading')
+ print('----------------------------------------')
+ print('latitude ' , gpsd.fix.latitude)
+ print('longitude ' , gpsd.fix.longitude)
+ print('time utc ' , gpsd.utc,' + ', gpsd.fix.time)
+ print('altitude (m)' , gpsd.fix.altitude)
+ print('eps ' , gpsd.fix.eps)
+ print('epx ' , gpsd.fix.epx)
+ print('epv ' , gpsd.fix.epv)
+ print('ept ' , gpsd.fix.ept)
+ print('speed (m/s) ' , gpsd.fix.speed)
+ print('climb ' , gpsd.fix.climb)
+ print('track ' , gpsd.fix.track)
+ print('mode ' , gpsd.fix.mode)
+ print()
+ print("%s satellites in view:" % len(gpsd.satellites))
for sat in gpsd.satellites:
- print " %r" % sat
+ print(" %r" % sat)
time.sleep(5) #set to whatever
except (KeyboardInterrupt, SystemExit): #when you press ctrl+c
- print "\nKilling Thread..."
+ print("\nKilling Thread...")
gpsp.running = False
gpsp.join() # wait for the thread to finish what it's doing
- print "Done.\nExiting."
+ print("Done.\nExiting.")