如何使用 gprs 从 GPS 设备向网站发送数据?
我本来计划做一个迷你项目。使用使用 GPRS(具有互联网连接的 SIM 卡)的 GPS 调制解调器,我需要将数据从 GPS 调制解调器发送到网站。是否可以?如果可以的话可以怎样做呢?需要什么语言?还告诉我最好的 GPS 设备吗?
I had planned to do mini project. With GPS modem using GPRS(sim card with internet connection) and i need to send the data from GPS modem to a website. Is it possible? If so how it can be done? What are the languages needed? And also tell me about the best GPS device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GPS 设备使用称为 NMEA 协议的标准协议进行通信。
假设您使用 .NET,您可以查看 DotSpatial 开源项目中的定位代码:http://dotspatial.codeplex。 com/
他们有类来解码 NMEA 字符串,并且可能可以开箱即用地完成您所描述的大部分操作。
至于最好的 GPS 设备,如果您需要标准分辨率,任何 GPS 设备都可以。花 10 美元就可以买到它们。我们经常使用 USGlobalSat 型号 BU-353,尽管这是 USB,因此它可能无法在您的应用程序中工作。
GPS devices communicate using a standard protocol called the NMEA protocol.
Assuming you are using .NET you can check out the Positioning code in the DotSpatial open source project: http://dotspatial.codeplex.com/
They've got classes to decode the NMEA strings and can probably do much of what you are describing out of the box.
As for the best GPS device, if you need standard resolutions, any GPS device will do. They can be had for 10's of dollars. We often use the USGlobalSat model BU-353, although this is USB so it may not work in your application.
为了你想要的你必须做两件事
1. 创建一个 TCP 侦听器,它将在同一端口中使用 TCP 等待信息并将其放入数据库
2. 创建一个Web 或Windows 应用程序供您从数据库读取。
我在最近的项目中做了类似的事情。
问候。
For what you want u must do 2 things
1. Create a TCP Listener which will wait for info using TCP in same port and put into database
2. Create a web or windows application for you read from database.
i have done something like this in my recent project.
Regards.