-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
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
No more VO2_max in steps_activities table since 2024-05-23 #236
Comments
To help, I wrote a little program to get the VO2Max on my Garmin Connect account with Partial result of running
|
I found the problem and solution. Since May 2024, Garmin JSON activity files do not export some fields with a So in this program, the variable GarminDB/garmindb/garmin_json_data.py Lines 108 to 123 in e52ebc2
So I suggest to modify and replacing by: def _get_field_obj(self, json, fieldname, format_func):
try:
data = json[fieldname]
return format_func(data)
except KeyError as e:
self.logger.debug("JSON %s not found in %r, setting to `0`: %s", fieldname, json, e)
return format_func(0) |
No more VO2_max in
steps_activities
table since 2024-05-23Open
garmin_activities
database with sqlite3.Log example:
You can see that all
running
andwalking
activities since 2024-05-23 have noVO2_Max
data.The text was updated successfully, but these errors were encountered: