Am looking for C# open source NMEA parser.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
One more (support several devices) http://www.codeproject.com/Articles/279647/NMEA-sentence-parser-builder
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.
Here is another open source library, but written in C++ .
https://code.google.com/p/avr-nmea-gps-library/
You can compile that as a DLL and invoke it from C#. This code was written for microcontrollers, with very little memory and processing power, making this code a very fast alternative.
check out sharpGPS . there are several other gps and nmea related projects o codeplex too
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?