Drag and Drop for Windows
Alex Mottram contributes this tidbit:This may be elementary for some, but I just figured this out for someone in the Groundspeak forums and figured it may be worthy of mention here:
To create a very simple drag-n-drop system for GPSBabel/windows (this example takes GPX and makes a Streets & Trips CSV file):
- Create a BATCH file called GPXTOCSV.BAT in the same directory
as GPSBABEL.EXE. In that batch file, put
@echo off
gpsbabel.exe -i gpx -f %1 -o s_and_t -F %1.csv
If you're using NT or XP, you can use:
@echo off
gpsbabel.exe -i gpx -f %1 -o s_and_t -F "%~n1".csv
to avoid the destination from being named "blah.gpx.csv" - Create a shortcut on your desktop to GPXTOCSV.BAT
- Drag-n-Drop GPX files onto the desktop icon you just created.
Output will be gpx_filename.gpx.csv in the same directory as the GPX file.
Not the most elegant solution, but definitely a simple one for those scared of command lines. Heck, you only have do this ONCE and it's faster than pointing and clicking at any GUI I've ever seen. :)
