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?
-
Export original from strava:
-
Use Garmin’s java based FIT CSV Tool | FIT SDK | Garmin Developers to convert FIT files to CSVs.
-
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
-
Plot the record.distance[m] vs. record.enhanced_altitude[m] as a scatter plot.
5 Likes
Wow, thank you!
1 Like
Dayum!
2 Likes