Run the following on package manager
Install-Package NmeaParser -Version 2.2.0
For each upcoming version there are milestones to explain what new features will be added per version. For any completed issue a new minor version will be deployed to nuget.
- RMB
- RMC
- GGA
- VTG
- GLL
- GSA
Contributions are always welcome! Please feel free to submit pull requests and to open issues. I prefer to have tests on all public methods if possible.
- Use static method
NmeaHandler.GetNmeaHandler
to retrieve an instance ofINmeaHandler
. - Pass full Nmea Line to method
ParseLine
. Line type will be returned as part of enumNmeaType
. - From
INmeaHandler
you have access toISystemState
, from which you can get any information you want, including complete instances of parsed lines.