10

Am looking for C# open source NMEA parser.

gil
  • 2,248
  • 6
  • 25
  • 31
  • I know that this is really really old, but I just started building one myself here https://github.com/DevsAnon/NmeaParser it will be only a parser compared to other libraries that include connections etc, so no overhead. And with full support of .net standard. it will be a nuget package and released soon. – John Demetriou Jul 20 '20 at 06:12

4 Answers4

7

Well, I'm not familiar with it myself, but some quick searches show one on CodeProject, which links to 2 other such, here and here. Any of those help?

Marc Gravell
  • 1,026,079
  • 266
  • 2,566
  • 2,900
5

check out sharpGPS . there are several other gps and nmea related projects o codeplex too

Joachim Kerschbaumer
  • 9,695
  • 7
  • 49
  • 84
3

FWIW, it's not hard (10-40 LOC) to parse the basic ones your self. If you find you need to do this, here is a link with some useful info.

BCS
  • 75,627
  • 68
  • 187
  • 294
1

One more (support several devices) http://www.codeproject.com/Articles/279647/NMEA-sentence-parser-builder

mxasim
  • 2,153
  • 21
  • 15