Thu Feb 05, 2015 6:57 pm
Hi Uldis,
I would like to send the GPS data captured to traccar gps server. How do I make use of the GPS package and send the following data to the server?
Login (sent once TCP connection is establshed):
$PGID,123456789012345*0F\r\n (where 123456789012345 - IMEI or other unique id)
Simple location report format is just a standard NMEA GPRMC sentence:
$GPRMC,225446,A,4916.45,N,12311.12,W,000.5,054.7,191194,020.3,E*68\r\n
225446 - Time of fix 22:54:46 UTC
A - Navigation receiver warning A = OK, V = warning
4916.45,N - Latitude 49 deg. 16.45 min North
12311.12,W - Longitude 123 deg. 11.12 min West
000.5 - Speed over ground, Knots
054.7 - Course Made Good, True
191194 - Date of fix 19 November 1994
020.3,E - Magnetic variation 20.3 deg East
*68 - Checksum
Thanks.