c# 通过 TCP 连接从 GPS 接收数据
我在车里放了一个 GPS 追踪设备,它每十秒向我发送一次位置信息。 现在我想开发一个应用程序来显示有关我的汽车位置的信息。
问题是我不知道如何通过 GPRS/TCP 连接从 GPS 接收数据。
有什么建议吗?
I put a GPS Tracing device in my car, which sends me position information every ten seconds.
Now I want to develop an application that will show information about position of my car.
The problem is that I don't know how to receive data from GPS over GPRS/TCP connection.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以开发一个 C# 应用程序作为服务器,并且配备 GSM/GPRS 调制解调器的 GPS 设备将连接到您的服务器。建立连接后,您可以从 GPS 设备接收数据或向 GPS 设备传输数据。
您的服务器 PC 应该位于公共/静态 IP 上。
Yo can develop a C# application which acts as a server and your GPS device equipped with GSM/GPRS modem will connect to your server. Once the connection is established, you can receive and transmit data from/to GPS device.
Your server PC should be on public/static IP.