This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

"Undefined" Error when Importing GPX or TCX from from Strava Routes

Former Member
Former Member
Hi

I am trying to upload a route (both TCX and GPX) which have been export from Strava Routes.

I get a "undefined" error when I upload - any ideas anyone. The files look to be valid when I test them on other 3rd party sites like http://www.gpsvisualizer.com/



The map files should be attached too


Thanks
  • Here's the command for gpsbabel:
    gpsbabel -t -i gpx -f <input.gpx> -x track,faketime=20000101000000+10 -o gpx -F <output.gpx>
    This adds equidistant timestamps beginning at 01.01.2010 00:00:00 with increments of 10s to the file. Replace <input.gpx> and <output.gpx> with the filenames :)

    The tool is freely available at http://www.gpsbabel.org. At this time, the faketime option is not present in the GUI, so you need to use the command line. This works of course also for OS X, the binary is located in /Applications/GPSBabelFE.app/Contents/MacOS/gpsbabel

    Christophe