You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
#! /usr/bin/env python3
|
|
"""
|
|
example Python gpsd client
|
|
run this way: python3 example1.py.txt
|
|
"""
|
|
|
|
# from https://gpsd.gitlab.io/gpsd/gpsd-client-example-code.html
|
|
|
|
# this client is for the CubeSatSim Lite which does not have a Pico microcontroller
|
|
|
|
import gps # the gpsd interface module
|
|
import time
|
|
|
|
session = gps.gps(mode=gps.WATCH_ENABLE)
|
|
|
|
start = time.perf_counter()
|
|
|
|
mode = -1
|
|
|
|
lat = 0
|
|
|
|
lon = 0
|
|
|
|
alt = 0
|
|
|
|
try:
|
|
while (session.read() == 0) and ((time.perf_counter() - start) < 1.5) and (mode < 3):
|
|
# print(gps.MODE_SET)
|
|
# print(session.valid)
|
|
if not (gps.MODE_SET & session.valid):
|
|
# not useful, probably not a TPV message
|
|
continue
|
|
|
|
# print('Mode: %s(%d) Time: ' %
|
|
# (("Invalid", "NO_FIX", "2D", "3D")[session.fix.mode],
|
|
# session.fix.mode), end="")
|
|
# print time, if we have it
|
|
print("%d " % session.fix.mode, end="")
|
|
if (session.fix.mode > mode):
|
|
mode = session.fix.mode
|
|
# if gps.TIME_SET & session.valid:
|
|
# print(session.fix.time, end="")
|
|
# else:
|
|
# print('n/a', end="")
|
|
|
|
if ((gps.isfinite(session.fix.latitude) and
|
|
gps.isfinite(session.fix.longitude))):
|
|
print("%.6f %.6f %.6f" %
|
|
(session.fix.latitude, session.fix.longitude, session.fix.altitude))
|
|
lat = session.fix.latitude
|
|
lon = session.fix.longitude
|
|
alt = session.fix.altitude
|
|
else:
|
|
print(" 0 0 0")
|
|
|
|
except KeyboardInterrupt:
|
|
# got a ^C. Say bye, bye
|
|
print('')
|
|
|
|
# Got ^C, or fell out of the loop. Cleanup, and leave.
|
|
session.close()
|
|
print("%.6f %.6f %.1f" % (lat, lon, alt))
|
|
exit(0)
|