18 unstable releases (6 breaking)

0.6.0 Aug 27, 2023
0.5.0 Jun 4, 2023
0.4.0 Feb 12, 2023
0.3.1 Sep 1, 2022
0.0.1 May 20, 2016

#18 in Geospatial

Download history 244/week @ 2023-11-20 191/week @ 2023-11-27 137/week @ 2023-12-04 153/week @ 2023-12-11 47/week @ 2023-12-18 1/week @ 2023-12-25 222/week @ 2024-01-01 244/week @ 2024-01-08 433/week @ 2024-01-15 345/week @ 2024-01-22 251/week @ 2024-01-29 151/week @ 2024-02-05 309/week @ 2024-02-12 65/week @ 2024-02-19 253/week @ 2024-02-26 651/week @ 2024-03-04

1,285 downloads per month
Used in 3 crates

MIT/Apache

230KB
5K SLoC

NMEA

Version Build Status License Apache-2

Complete documentation can be found on www.docs.rs/nmea

NMEA 0183 sentence parser for Rust.

Supported sentences:

NMEA Standard Sentences

  • AAM
  • ALM
  • BOD
  • BWC
  • BWW
  • DBK
  • GBS
  • GGA *
  • GLL *
  • GNS *
  • GSA *
  • GSV *
  • HDT
  • MDA
  • MTW
  • MWV
  • RMC *
  • VHW
  • VTG *
  • ZDA
  • ZFO
  • ZTG

Other Sentences

  • TXT *

Vendor Extensions

  • PGRMZ

* Nmea::parse() supported sentences

How to contribute

We have an ongoing effort to support as many sentences from NMEA 0183 as possible, starting with the most well-known. If you'd like to contribute by writing a parser for a given message, check out the Supporting additional sentences (AeroRust/nmea#54) issue and contribute in 3 easy steps:

  1. Write a comment - Please write a comment in the issue for the sentence(s) you'd like to implement, you will be mentioned on the task to avoid duplicate implementations.
  2. Implement each sentence alongside at least 1 test in its own module under the ./src/sentences directory using the nom crate.
  3. Open a PR 🎉

What is NMEA 0183?

NMEA 0183 is a combined electrical and data specification for communication between marine electronics such as echo sounder, sonars, anemometer, gyrocompass, autopilot, GPS receivers and many other types of instruments.

Usage

Add the nmea dependency in your Cargo.toml:

[dependencies]
nmea = "0.5"

For no_std

This crate support no_std without the use of an allocator ( alloc ), just add the nmea crate without the default features:

[dependencies]
nmea = { version = "0.5", default-features = false }

Parse

To use the NMEA parser create a Nmea struct and feed it with NMEA sentences (only supports GNSS messages, otherwise use the parse_str() and parse_bytes()):

use nmea::Nmea;

fn main() {
    let mut nmea = Nmea::default();
    let gga = "$GPGGA,092750.000,5321.6802,N,00630.3372,W,1,8,1.03,61.7,M,55.2,M,,*76";

    // feature `GGA` should be enabled to parse this sentence.
    #[cfg(feature = "GGA")]
    {
        nmea.parse(gga).unwrap();
        println!("{}", nmea);
    }
}

Supported Rust Versions

The Minimum supported Rust version (or MSRV) is 1.64.

Unsafe-free crate

We use #![deny(unsafe_code)] for a fully unsafe-free crate.

License

This project is licensed under the Apache-2.0.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the project by you, shall be licensed as Apache-2.0, without any additional terms or conditions.

Dependencies

~2.8–10MB
~74K SLoC