From e8c2719dce145ad9f2a451849c722ca06c8ef1a6 Mon Sep 17 00:00:00 2001 From: Erik Andresen Date: Sat, 25 Nov 2017 12:13:09 +0100 Subject: [PATCH] Added script to follow coordinates from another gpsd --- scripts/gps_follow_gpsd.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 scripts/gps_follow_gpsd.py diff --git a/scripts/gps_follow_gpsd.py b/scripts/gps_follow_gpsd.py new file mode 100755 index 0000000..2747504 --- /dev/null +++ b/scripts/gps_follow_gpsd.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python +# -*- coding: iso-8859-15 -*- + +import thread +import gps +import numpy as np +from geodesy import utm +from gps_follow_waypoints import GPSGotoCoords + +DEFAULT_GPSD_HOSTNAME="wildthumper" +DEFAULT_GPSD_PORT="2948" + +class GPSFollowGPSD: + def __init__(self, hostname=DEFAULT_GPSD_HOSTNAME, port=DEFAULT_GPSD_PORT): + self.gpsd = gps.gps(host=hostname, port=port) + self.gpsd.stream(gps.WATCH_ENABLE | gps.WATCH_NEWSTYLE) + self.follower = GPSGotoCoords() + + def run(self): + coords_last = (0, 0) + for report in self.gpsd: + if report['class'] == "TPV": + if report['mode'] == 0: + print "No data from gpsd" + continue + coords_cur = utm.fromLatLong(report.lat, report.lon) + coords_cur = [coords_cur.northing, coords_cur.easting] + + # Check difference to last goal + if np.linalg.norm(np.array(coords_cur) - np.array(coords_last)) > 3: + print "Setting new goal" + # Set a new goal + thread.start_new_thread(self.follower.next_pos, (report.lat, report.lon)) + coords_last = coords_cur + +if __name__ == "__main__": + p = GPSFollowGPSD() + p.run() -- 2.39.2