gps device data receiving and interpreting it

Harshit

I bought a GPS device (GT02A) for realtime tracking of a vehicle. Now,I want the data sent by this device (such as longitude and latitude) to be sent to my SQL database in realtime, from where a client application will be able to access and perform calculations on the data. I have decided to use this software for receiving data from the device and transfering it to my database :- http://www.aggsoft.com/gps-tracker-data-logger/

My first question is, am i using the correct software to solve my purpose? or are there better easy to use freely available softwares?

I connected my device with the above mentioned software and started receiving data. The data i receive is of this format: (027042575977BR00150315A2230.9982N08819.7442E000.3180425295.9200000000L00000000)

Now, what i understand is that the fullstop is a delimeter for each parameter of data sent by the device. the first part is the IMEI number of the device(7042575977). My second question is, which is the longitude and latitude from among other data?? what is the value of the cordinates? which format is that in? I just cannot uderstand the data. The device sends date time speed direction also along with the coordinates. how do i understand that from the packet received?

for more info on data packet format you can also refer to page 6 of http://www.iconcox.com/uploads/soft/140916/1-140916013353.pdf

But, Please help me understand the data and how i can send it to my database tables in the way i want. Please help, this is very important for me. Answering any of the questions or any sort of help on information is greatly appreciated. Thank You.

Jeff Merlin

Your first question depends on your needs. If you only need basic information to be logged, I would suggest you take the NMEA sentence RMC (Recommended Minimum Specific GNSS Data), and store it in the database. No need for any software except a simple script. RMC includes time, date, latitude, longitude, speed and heading. If you need altitude, you also have to read the NMEA GGA sentence which gives you time (but not the date), latitude, longitude and altitude (among other data).

Your second question… I’m guessing, but if you live 7 km south east of Netaji Subhas Chandra Bose International Airport, in Kolkata, West Bengal, India, (Alipore Road) your latitude is 2230.9982N and your longitude is 08819.7442E. This is a compact format with the degrees, minutes and fraction of minute. 2230.9982N means 22 deg., 30.9982 min North.

Here is information about NMEA: http://www.gpsinformation.org/dale/nmea.htm

Edit: I'm not sure if you can get NMEA from your device, and if not you need to decode the data as it is.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Not receiving data from BLE device

From Dev

Android BLE peripheral device data receiving

From Dev

Transmitting/Receiving data to/from a GRPS device

From Dev

Prevent rendering when receiving GPS data in React Native

From Dev

GPS Module blinking but not receiving any data with RPi 3

From Dev

Data receiving from Bluetooth Low Energy device in android is very slow

From Dev

Handling data from external Bluetooth device with GPS NMEA strings

From Dev

How to get gps nmea data from Teltonika FM1100 after receiving imei code in C#

From Dev

Device Not Receiving GCM Messages

From Dev

Interpreting a backtrace when crashing on the device but not the simulator

From Dev

Interpreting and converting zone file data

From Dev

Interpreting serial data via bash

From Dev

Correcting an error in interpreting CSV data

From Dev

How do I get the data from a serial GPS connected to my android device?

From Dev

GPS Location - Do it on Device or on Server?

From Dev

Android device GPS on/off programmatically

From Dev

GPS location change but device not moving

From Dev

Can a GPS navigation device be tracked?

From Dev

Android device GPS on/off programmatically

From Dev

Android External GPS device receiver

From Dev

Enable GPS in a device owner app

From Dev

GPS dialog when device turn on

From Dev

Interpreting bytes as packed binary data in JavaScript

From Dev

Python + Xbee - interpreting binary data for analog samples

From Dev

Downloading and interpreting data from a URL using HTML

From Dev

Chrome Remote Developer tools not interpreting received data

From Dev

Using USB GPS on android device without builtin GPS; Equivalent of gpsd

From Dev

GPS Service Check, to check whether GPS is enabled or disabled on a device

From Dev

CodeIgniter not receiving POST data

Related Related

  1. 1

    Not receiving data from BLE device

  2. 2

    Android BLE peripheral device data receiving

  3. 3

    Transmitting/Receiving data to/from a GRPS device

  4. 4

    Prevent rendering when receiving GPS data in React Native

  5. 5

    GPS Module blinking but not receiving any data with RPi 3

  6. 6

    Data receiving from Bluetooth Low Energy device in android is very slow

  7. 7

    Handling data from external Bluetooth device with GPS NMEA strings

  8. 8

    How to get gps nmea data from Teltonika FM1100 after receiving imei code in C#

  9. 9

    Device Not Receiving GCM Messages

  10. 10

    Interpreting a backtrace when crashing on the device but not the simulator

  11. 11

    Interpreting and converting zone file data

  12. 12

    Interpreting serial data via bash

  13. 13

    Correcting an error in interpreting CSV data

  14. 14

    How do I get the data from a serial GPS connected to my android device?

  15. 15

    GPS Location - Do it on Device or on Server?

  16. 16

    Android device GPS on/off programmatically

  17. 17

    GPS location change but device not moving

  18. 18

    Can a GPS navigation device be tracked?

  19. 19

    Android device GPS on/off programmatically

  20. 20

    Android External GPS device receiver

  21. 21

    Enable GPS in a device owner app

  22. 22

    GPS dialog when device turn on

  23. 23

    Interpreting bytes as packed binary data in JavaScript

  24. 24

    Python + Xbee - interpreting binary data for analog samples

  25. 25

    Downloading and interpreting data from a URL using HTML

  26. 26

    Chrome Remote Developer tools not interpreting received data

  27. 27

    Using USB GPS on android device without builtin GPS; Equivalent of gpsd

  28. 28

    GPS Service Check, to check whether GPS is enabled or disabled on a device

  29. 29

    CodeIgniter not receiving POST data

HotTag

Archive