是否有现有的网络 GPS 协议?
我希望通过以太网共享 GPS 信号。我可以将数据捆绑在 UDP 消息中并完成它,但我想知道是否有任何现有的(开放或其他)协议可以执行此操作?
I'm looking to share a GPS signal over Ethernet. I can just bundle the data in a UDP message and be done with it, but I was wondering if there were any existing (open or otherwise) protocols for doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的意思是问是否有任何现有协议用于通过 TCP/IP 网络传送 GPS 坐标。 “以太网”和“gps 信号”不一定具有您正在寻找的含义。
我知道有吗?不,但我建议您使用 TCP 套接字而不是 UDP。
What you mean to ask is if there are any existing protocols for communicating GPS coordinates over a TCP/IP network. "ethernet" and "gps signal" don't necessarily have the meaning you're looking for.
Do I know of any? No. But I would recommend you use TCP sockets instead of UDP.
您可以使用NMEA 0183格式,该格式不是与介质绑定的格式,而是主要通过串行使用。使用此 NMEA 句子解析器生成器
构建 NMEA 句子并通过 TCP 套接字传输它们。
You could use NMEA 0183 format which is not a format tied to a medium but is or was mostly used over serial. Use this NMEA sentence parser builder
to build NMEA sentences and stream them over a TCP socket.