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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-03 16:38:40  来源:igfitidea点击:

C# open source NMEA parser

c#nmea

提问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 个,例如herehere。这些有帮助吗?

回答by Joachim Kerschbaumer

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

看看sharpGPS。还有其他几个与 gps 和 nmea 相关的项目 o codeplex

回答by BCS

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

FWIW,解析您自己的基本内容并不难(10-40 LOC)。如果您发现需要这样做,这里有一个包含一些有用信息的链接。

回答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# 调用它。这段代码是为微控制器编写的,内存和处理能力都非常低,这使得这段代码成为一个非常快速的替代方案。