Implemented most used sentences like RMC, VTG, GGA, GLL.
Parser do not use heap memory and relies only on core
.
You should instantiate Parser with new and than use methods like parsefrombyte or parsefrombytes.
If parser accumulates enough data it will return ParseResult on success or &str
that describing an error.
You do not need to do any preprocessing such as split data to strings or NMEA sentences.
If you could read a one byte at a time from the receiver you may use parse_from_byte
:
```rust
use nmea0183::{Parser, ParseResult};
let nmea = b"$GPGGA,145659.00,5956.695396,N,03022.454999,E,2,07,0.6,9.0,M,18.0,M,,62\r\n$GPGGA,,,,,,,,,,,,,,00\r\n"; let mut parser = Parser::new(); for b in &nmea[..] { if let Some(result) = parser.parsefrombyte(*b) { match result { Ok(ParseResult::GGA(Some(gga))) => { }, // Got GGA sentence Ok(ParseResult::GGA(None)) => { }, // Got GGA sentence without valid data, receiver ok but has no solution Ok(_) => {}, // Some other sentences.. Err(e) => { } // Got parse error } } } ```
If you read many bytes from receiver at once or want to parse NMEA log from text file you could use Iterator-style: ```rust use nmea0183::{Parser, ParseResult};
let nmea = b"$GPGGA,,,,,,,,,,,,,,00\r\n$GPRMC,125504.049,A,5542.2389,N,03741.6063,E,0.06,25.82,200906,,,A56\r\n"; let mut parser = Parser::new();
for result in parser.parsefrombytes(&nmea[..]) { match result { Ok(ParseResult::RMC(Some(rmc))) => { }, // Got RMC sentence Ok(ParseResult::GGA(None)) => { }, // Got GGA sentence without valid data, receiver ok but has no solution Ok(_) => {}, // Some other sentences.. Err(e) => { } // Got parse error } } ```
It is possible to ignore some sentences or sources. You can set filter on Parser like so: ```rust use nmea0183::{Parser, ParseResult, Sentence, Source};
let parseronlygpsgallileo = Parser::new() .sourcefilter(Source::GPS | Source::Gallileo); let parseronlyrmcggagps = Parser::new() .sourceonly(Source::GPS) .sentencefilter(Sentence::RMC | Sentence::GGA); ```
Should not panic. If so please report issue on project page.
Unsupported sentence type.
- Got currently not supported sentence.
Checksum error!
- Sentence has wrong checksum, possible data corruption.
Source is not supported!
- Unknown source, new sattelite system is launched? :)
NMEA format error!
- Possible data corruption. Parser drops all accumulated data and starts seek new sentences.
It's possible to got other very rare error messages that relates to protocol errors. Receivers nowadays mostly do not violate NMEA specs.
GSA and GSV parsing.