activity = GC.activity()
equipment = GC.activityMetrics()['Equipment']
How to get the activity object for each of the activities defined. That code does not work as the result is from type date:
actDates = GC.activities(filter = 'Equipment contains "Topstone" and Date >= "2023/01/01"')
for date in actDates:
rides = GC.activity(activity=date)
print(list(rides))
for r in rides:
metrics=GC.activityMetrics()
# here only the selected activity is accessable
# how to get access of the metadata of activity?
I would also like to know how we can count and sum the duration of activities after a certain activity with metadata tag "MaintenanceDone". Target is, not to write the maintanance tags in every activity but rather set a special activitiy called Maintenance and do the calculations from that.
Best,
Maik






Is there a way to see any debug output while you are working in these tiles?
Both charts sound interesting. I haven't worked on anything like that. The idea for me was to track the mileage of a component.
I have not seen a debug function for the tiles yet.

