Import data from CSV, TXT file to Traccar Database

juanp.naranjo8 years ago

Good day, I tried to load the database data from csv file generated by the GPS, but the format did not coordinate corresponds to the current location.
Anyone know what kind of conversion should do?

I'm trying to do the coordinate transformation with Pyproj.

This is an example of the data sent by the GPS.

imei: 868683022727329, tracker, 160512022646, F, 182645.000, A, 0439.8549, N, 07404.3335, W, 3.31,157.21;

juanp.naranjo8 years ago

Hi the GPS is TK102..

Anton Tananaev8 years ago

It's GPS103 protocol. Port 5001 in Traccar.

mvalverde8 years ago

Hola, creo entender que quieres convertir las coordenadas de formato NMEA a Decimal.
puedes usar una formula matemática como la siguiente:


 /*--------------------------------------------------------------------------\
 |            | NMEA          | Decimal                                     ||
 |------------|---------------|-----------------------------------------------
 | latitude   | 0439.8549     | 04 + (39.8549/60) = 4.664248                ||
 |------------|---------------|-----------------------------------------------
 | longitude  | 07404.3335    | 074 + (16.04.3335/60) = 74.072225           ||
 \--------------------------------------------------------------------------*/

luego puedes ver tu ubicación como por ejemplo en google maps con lo siguiente
https://www.google.com/maps?q=4.664248N,74.072225W

puedes usar algún servicio externo también para la conversión
http://www.hiddenvision.co.uk/ez/?nmea_lat=0439.8549N&nmea_lon=07404.3335W

saludos.

juanp.naranjo8 years ago

Gracias a todos...esa era la solución