Hi all,
the fork of my mountain bike should be serviced after 100 hours of usage, is it possible to use the Gear Tracking feature in order to track the hours of usage of a bike and not just tracking the km?
Regards
Hi all,
the fork of my mountain bike should be serviced after 100 hours of usage, is it possible to use the Gear Tracking feature in order to track the hours of usage of a bike and not just tracking the km?
Regards
... and you can also calculate the time from your average pace for the last period (click the link to see it). For example the bike has 2470 km, and your average pace is 2:30 (2.5 minutes per km), the total time is 2.5 * 2470 = 6175 minutes = 103 hours. If you use multiple bikes with different average speeds, use the corresponding average speed, of course.
A list of activities for a gear is in JSON, so you can also sum duration using a script like below. Replace !!!GEAR_ID!!! by a long ID from edit link for a gear, and set limit=200 as needed (listing from newest).
jQuery.getJSON( 'https://connect.garmin.com/modern/proxy/activitylist-service/activities/!!!GEAR_ID!!!/gear?limit=200', function(act_list) { var t=0; act_list.forEach( function(act){t+=act['duration'];} ); console.dir((t/3600).toFixed(2), 'h'); } );
yes but using report I need copy and paste in execel in order to sum up the hours right ?
Not at all. Go to "Reports" and select "Progress summary". There you can select custom date range and the type of activity (cycling or a subtype thereof in your case). One of the results of such a report will total activity time.