#gps #protocols #tcp-socket #gpsd #satellite #json #information

gpsd_proto

The gpsd_proto module contains types and functions to connect to gpsd to get GPS coordinates and satellite information

15 releases (1 stable)

1.0.0 Nov 1, 2023
0.7.0 Sep 1, 2020
0.6.0 Jan 3, 2020
0.5.1 Aug 18, 2019
0.2.1 Oct 11, 2018

#328 in Network programming

Download history 25/week @ 2024-01-08 43/week @ 2024-01-15 24/week @ 2024-01-22 286/week @ 2024-01-29 456/week @ 2024-02-05 265/week @ 2024-02-12 215/week @ 2024-02-19 244/week @ 2024-02-26 124/week @ 2024-03-04 143/week @ 2024-03-11 102/week @ 2024-03-18 119/week @ 2024-03-25 120/week @ 2024-04-01 97/week @ 2024-04-08 103/week @ 2024-04-15

452 downloads per month

Apache-2.0

31KB
391 lines

gpsd_proto   Build Status Latest Docs Coverage Status

The gpsd_proto module contains types and functions to connect to gpsd to get GPS coordinates and satellite information.

gpsd_proto uses a plain TCP socket to connect to gpsd, reads and writes JSON messages. The main motivation to create this crate was independence from C libraries, like libgps (provided by gpsd) to ease cross compiling.

A example demo application is provided in the example sub directory. Check the repository for up to date sample code.

Testing

gpsd_proto has been tested against gpsd version 3.17 on macOS and Linux with these devices:

Feel free to report any other supported GPS by opening a GitHub issue.

Reference documentation

Important reference documentation of gpsd are the JSON protocol and the client HOWTO.

Development notes

Start gpsd with a real GPS device:

/usr/local/sbin/gpsd -N -D4 /dev/tty.SLAB_USBtoUART

Or start gpsd with a TCP stream to a remote GPS:

/usr/local/sbin/gpsd -N -D2 tcp://<IP>:<PORT>

Test the connection to gpsd with telnet localhost 2947 and send the string:

?WATCH={"enable":true,"json":true};

Dependencies

~0.8–1.6MB
~36K SLoC