[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
howtos:hardware:gps_devices [2022/04/10 17:10 (UTC)] – [Further Reading] pcereshowtos:hardware:gps_devices [2022/04/10 17:33 (UTC)] (current) – [Sources] pceres
Line 28: Line 28:
 As an example here is the code which transfers a gpx waypoint file to a Garmin GPS device. As an example here is the code which transfers a gpx waypoint file to a Garmin GPS device.
 <code>gpsbabel -i gpx -f $file -o garmin -F usb:</code> <code>gpsbabel -i gpx -f $file -o garmin -F usb:</code>
 +
 +===== Exporting Data from the Device =====
 +
 +In case of a GPS sport watch, the most important operation is extracting tracks from the device, usually in a gpx format.
 +Here is an example to extract all the tracks saved in the device to a single gpx file (using GPX format version 1.1):
 +<code>gpsbabel -t -i garmin -f usb: -o gpx,gpxver=1.1 -F $FILEOUT</code>
 +To extract to file $FILEOUT a single gpx track with name $TRACKNAME from a global gpx file $FILEIN containing all tracks:
 +<code>gpsbabel -i gpx -t -f $FILEIN -x track,name=${TRACKNAME} -o gpx,gpxver=1.1 -F $FILEOUT</code>
 +The extracted gpx track can then be further processed by other sw, such as ZombieTrackerGPS, or uploaded on Garmin Connect website (GPX format version 1.1 is mandatory)  
  
 ===== Further Reading ===== ===== Further Reading =====
Line 41: Line 50:
 <!-- * Original source: [[http://some.website.org/some/page.html]] --> <!-- * Original source: [[http://some.website.org/some/page.html]] -->
 <!-- Authors are allowed to give credit to themselves! --> <!-- Authors are allowed to give credit to themselves! -->
-* Originally written by [[wiki:user:markush | Markus Hutmacher]] +  * Originally written by [[wiki:user:markush | Markus Hutmacher]] \\ 
 +  * Contributions by [[wiki:user:pceres | Pasquale Ceres]]
 <!-- * Contributions by [[wiki:user:yyy | User Y]] --> <!-- * Contributions by [[wiki:user:yyy | User Y]] -->
  
 <!-- Please do not modify anything below, except adding new tags.--> <!-- Please do not modify anything below, except adding new tags.-->
 <!-- You must remove the tag-word "template" below before saving your new page --> <!-- You must remove the tag-word "template" below before saving your new page -->
-{{tag>howtos gps, gpsd}}+{{tag>howtos gps, gpsd, gpsbabel}}
 howtos:hardware:gps_devices ()