Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Developing a GPS car tracking system

Tags:

c#

gps

I'm in the brainstorming phase to develop a GPS car tracking system requested by a customer. I myself know the directions to build some GPS system to mobile phones and etc. But sincerely I don't know how to start in that project. That is the scenario:

1) The cars will get a device with a SIM CARD that will emit GPS signals.
2) My customer will in any place (home, work, etc) with a web connection will see in the map where the car is located.

For me, I have not problems at get the GPS data, convert to usable info and show the position in some map system (like Google Maps or MS Bing Maps, by example). My problem is, how I do to retrieve that "GPS Signal" from device in the car? I will need some kind of "Receiver Device" connected to a web server machine in order to my application to consume that data?

like image 946
Click Ok Avatar asked Apr 13 '10 19:04

Click Ok


People also ask

How much does it cost to make a GPS tracker?

The total landed cost for the hypothetical BLE GPS tracking device was $24.09 at 100k units. If we use a 3-4x markup then that gives a suggested retail price range of $72.27 to $96.36.


1 Answers

Most GPRS-enabled vehicle trackers can be configured to send the data periodically to a remote server. The protocol and the details of the connection will vary a lot between different manufacturers. However in most cases, you should be able to configure the tracking device with the IP address and TCP port of your server, and then you should set up an application at that endpoint that listens for TCP connections from the tracking devices.

The first thing you should check is the documentation of the tracking device. It should reveal all these details. The serious brands will even provide working examples and demonstrations.

like image 122
Daniel Vassallo Avatar answered Oct 04 '22 02:10

Daniel Vassallo