C#开源NMEA解析器
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/173497/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
C# open source NMEA parser
提问by gil
Am looking for C# open source NMEA parser.
我正在寻找 C# 开源 NMEA 解析器。
采纳答案by Marc Gravell
Well, I'm not familiar with it myself, but some quick searches show one on CodeProject, which links to 2 other such, hereand here. Any of those help?
好吧,我自己并不熟悉它,但是一些快速搜索在CodeProject上显示了一个,它链接到其他 2 个,例如here和here。这些有帮助吗?
回答by Joachim Kerschbaumer
回答by BCS
回答by mxasim
One more (support several devices) http://www.codeproject.com/Articles/279647/NMEA-sentence-parser-builder
多一个(支持多种设备) http://www.codeproject.com/Articles/279647/NMEA-sentence-parser-builder
回答by radhoo
Here is another open source library, but written in C++ .
这是另一个开源库,但用 C++ 编写。
https://code.google.com/p/avr-nmea-gps-library/
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.
您可以将其编译为 DLL 并从 C# 调用它。这段代码是为微控制器编写的,内存和处理能力都非常低,这使得这段代码成为一个非常快速的替代方案。