Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bryopsida/dotnetnmea

NMEA 0183 parsing library
https://github.com/bryopsida/dotnetnmea

dotnet-core nmea-parsing-library nmea-sentences nmea0183 nuget

Last synced: about 2 months ago
JSON representation

NMEA 0183 parsing library

Awesome Lists containing this project

README

        

# DotnetNMEA

## NMEA parsing library

## Supported NMEA 0183 Sentences
| Sentence Type | Full Support | Partial Support |
| ------------- |:-------------:| -----:|
| GGA | :heavy_check_mark: | |
| RMC | :heavy_check_mark: | |
| GLL | :heavy_check_mark: | |
| GSA | :heavy_check_mark: | |
| GSV | | :heavy_check_mark: |

## Example Usage

```c#

INMEA0183Parser parser = new NMEA0183Parser();

ReadOnlySpan exampleMessage =
"$GPRMC,215236.000,A,2006.5938,N,09844.6060,W,0.38,343.75,150919,,,A*70";

switch(mess.Type)
{
case MessageType.RMC:
RMCMessage mess = parser.Parse(exampleMessage) as RMCMessage;
//do something with message
break;
}
```

## Help Wanted

Device access for testing has been limited so if you have additional NMEA message examples that are not currently supported please submit an issue containing the message string. Pull requests, suggestions, and requests are always welcome.