We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, once you've saved an activity, you cannot delete or modify it.
Enhance the saved activity dashboard so it provides the option to update or modify the data if the user is logged in.
Activity fields that definitely want to be updated:
intensity_factor
tss
ngp
cp
ftp
distance_m
strava_json['distance']
df['distance'].iloc[-1] - df['distance'].iloc[0]
distance_m(df['distance'], df['moving'])
strava_json['total_elevation_gain']
df['elevation']
moving_time_s
strava_json['moving_time']
moving_time_s(df['time'], df['moving'])
elapsed_time_s
strava_json['elapsed_time']
df['time'].iloc[-1] - df['time'].iloc[0]
created
moving_speed_ms
strava_json['average_speed']
average_grade_decimal
elevation_m
title
description
recorded
tz_local
strava_id
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, once you've saved an activity, you cannot delete or modify it.
Old notes, likely irrelevant
Enhance the saved activity dashboard so it provides the option to update or modify the data if the user is logged in.
Activity fields that definitely want to be updated:
intensity_factor
tss
ngp
cp
orftp
Activity fields that may want to be updated:
distance_m
strava_json['distance']
df['distance'].iloc[-1] - df['distance'].iloc[0]
distance_m(df['distance'], df['moving'])
strava_json['total_elevation_gain']
df['elevation']
(naive)df['elevation']
(__ m threshold)df['elevation']
(naive on a profile smoothed with params {...})moving_time_s
strava_json['moving_time']
moving_time_s(df['time'], df['moving'])
elapsed_time_s
strava_json['elapsed_time']
df['time'].iloc[-1] - df['time'].iloc[0]
created
moving_speed_ms
strava_json['average_speed']
distance_m
andmoving_time_s
average_grade_decimal
elevation_m
anddistance_m
Activity fields that come straight from strava api:
title
description
recorded
tz_local
strava_id
References
The text was updated successfully, but these errors were encountered: