Python library to parse NMEA streams
Project description
NMEA Parser
A library used to decode NMEA data streams from GNSS receivers. Capable of parsing a text file containing NMEA data or reading from a serial port real time.
This library is currently in Beta and is subject to change any time.
Dependencies
PySerial is the only dependency. See requirements.txt.
Usage
See www.bek.sh/nmea-parser for a full manual.
Examples
Opening and Reading a Serial Port
It is highly sugested that you use all input streams within a context manager (with statement) as shown below.
from nmea import input_stream
stream = input_stream.GenericInputStream.open_stream('/dev/ttyACM0', 9600)
print(stream)
with stream:
print(stream.get_line())
If you must use an input stream without a context manager, make sure that the ensure_closed() function
is called prior to exit:
from nmea import input_stream
stream = input_stream.GenericInputStream.open_stream('/dev/ttyACM0', 9600)
print(stream)
print(stream.get_line())
stream.ensure_closed() # You must not forget to manually close the stream.
Using a context manager ensures that the port is always closed should your program halt unexpectedly.
GenericInputStream.open_stream() also accepts all keyword arguments that are accepted by serial.Serial() in
PySerial.
Opening and Reading a NMEA Dump file
Text files containing NMEA streams may also be used with this library. Just point the open_stream() function at
the desired file:
from nmea import input_stream, data_frame
stream = input_stream.GenericInputStream.open_stream('sample-data/sample1.txt')
with stream:
new_frame = data_frame.DataFrame.get_next_frame(stream)
print("Current GPS time:", new_frame.gps_time)
print("Current Latitude:", new_frame.latitude)
print("Current Longitude:", new_frame.longitude)
print("Current Speed:", new_frame.velocity)
print("Current heading:", new_frame.track)
Getting Position Data and Logging to a Database
The DataFrame object contains properties that allow you to access your current position, movement, and information
on all satellites used to calculate your fix. The logging module allows you to record these objects in an SQLite
database.
from nmea import input_stream, data_frame, database_wrapper
stream = input_stream.GenericInputStream.open_stream('/dev/ttyACM0', 9600)
db = database_wrapper.SQLiteConnection.from_path('./example.sqlite')
print(stream)
with stream:
while True:
new_frame = data_frame.DataFrame.get_next_frame(stream)
print("Current GPS time:", new_frame.gps_time)
print("Current Latitude:", new_frame.latitude)
print("Current Longitude:", new_frame.longitude)
print("Current Speed:", new_frame.velocity)
print("Current heading:", new_frame.track)
print("Number of Satellites above:", new_frame.nsats)
print("Individual Observations:")
for obs in new_frame.sv_observations:
print('\tPRN:', obs.prn)
print('\t\tSignal to Noise:', obs.snr)
print('\t\tAzimuth:', obs.azimuth)
print('\t\tElevation:', obs.elevation)
db.insert_dataframe(new_frame)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nmea-parser-0.5.0.tar.gz.
File metadata
- Download URL: nmea-parser-0.5.0.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cd12782f05db3c2521a3f7b011d77ed8a6ede398193fad0620b4d26d2ad9c34
|
|
| MD5 |
442b888829479e770e230d35d6404654
|
|
| BLAKE2b-256 |
dee4c526616c0c79a4e81749dbdc194a285c164ed5875e47d82959265ca76e8d
|
File details
Details for the file nmea_parser-0.5.0-py3-none-any.whl.
File metadata
- Download URL: nmea_parser-0.5.0-py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bc0ec8b7d87668cb2378fff29d9f998227af0c28f3f8fd64af4595965052dd8
|
|
| MD5 |
a200fe66133af82ceede5c0ea9320ef2
|
|
| BLAKE2b-256 |
3896d17f6f633364bc20b926429cb9ae1042f05c174ee2dbe36a740aa93d341d
|