eknus schrieb:Hallo hast du schon mal dies Tutorial
http://www.planetk.de/index.php/Garmin_eTrex_Vista_HCx
Abschnitt: "Wegpunkte von Geocaching.com übertragen"
ausprobiert
eremiljo schrieb:Ich mache das so, dass ich mir mit GCTour die Caches zusammenstelle, die ich besuchen will. In GCTour kann mann dann auch eine GPX-Datei abspeichern, und diese schiebe ich mit gpsbabel aufs Etrex.
Ganz nebenbei bekommt man auch noch einen schöneren Papier-Ausdruck dazu.
application/xml-loc;/usr/bin/loc2garmin.sh %s
application/gpx;/usr/bin/gpx2garmin.sh %s
#!/bin/bash
# datei /usr/bin/loc2garmin.sh
/usr/bin/gpsbabel -i geo -f $1 -o garmin -F usb: 2> /tmp/garmin_error
if [ -f /tmp/garmin_error ] && [ "`cat /tmp/garmin_error`" ]
then
error=`cat /tmp/garmin_error`
zenity --error --text="Fehler bei der Übertragung:\n\n'$error'"
fi
rm -f /tmp/garmin_error %1
#!/bin/bash
# datei /usr/bin/gpx2garmin.sh
/usr/bin/gpsbabel -i gpx -f $1 -o garmin -F usb: 2> /tmp/garmin_error
if [ -f /tmp/garmin_error ] && [ "`cat /tmp/garmin_error`" ]
then
error=`cat /tmp/garmin_error`
zenity --error --text="Fehler bei der Übertragung:\n\n'$error'"
fi
rm -f /tmp/garmin_error %1