Export elevation by mile for a route to Excel

This is probably a wild question. I’m trying to figure out how I can export a route’s elevation profile from RideWithGPS or Strava to Excel. Basically, I want the elevation by mile in a list. Any ideas?

  1. Export original from strava:

  2. Use Garmin’s java based FIT CSV Tool | FIT SDK | Garmin Developers to convert FIT files to CSVs.

  3. Use the tool to convert the FIT file to a CSV
    $ java -jar ./java/FitCSVTool.jar --defn none --data record ./Morning_Mountain_Bike_Ride.fit

  4. Plot the record.distance[m] vs. record.enhanced_altitude[m] as a scatter plot.

5 Likes

Wow, thank you!

1 Like

Dayum!

2 Likes