Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ckuethe/gr-nmea
Adding NMEA and GPSD data to gnuradio flowgraphs
https://github.com/ckuethe/gr-nmea
Last synced: 3 days ago
JSON representation
Adding NMEA and GPSD data to gnuradio flowgraphs
- Host: GitHub
- URL: https://github.com/ckuethe/gr-nmea
- Owner: ckuethe
- License: gpl-3.0
- Created: 2015-08-05T05:52:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-10T02:15:36.000Z (almost 9 years ago)
- Last Synced: 2024-12-09T12:14:46.863Z (about 1 month ago)
- Language: CMake
- Homepage:
- Size: 165 KB
- Stars: 22
- Watchers: 4
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
gr-nmea
=======This module includes a couple of blocks to connect to either a NMEA0183 GPS or a gpsd instance (for shared receivers or non NMEA protocols. This can be used to inject position, velocity, and time information into flowgraphs or recordings.
Usage
-----
Instantiate an `nmea_gpsd` or `nmea_serial` block in your flowgraph. The raw NMEA output is available on the `out` port and can probably be safely discarded; asynchronous messages resulting from the parsing of the NMEA stream is available on the `gps_msg` port.Both `nmea_gpsd.py` and `nmea_serial.py` can be run as standalone programs to demonstrate their functionality.
Dependencies
------------
pynmea2 is required for NMEA0183 parsinggpsd is useful for multiplexed device access, though not required for these modules