Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukekarrys/activity-report
Parse a CSV of Apple Watch activity data to see a report of your year-over-year data.
https://github.com/lukekarrys/activity-report
Last synced: 16 days ago
JSON representation
Parse a CSV of Apple Watch activity data to see a report of your year-over-year data.
- Host: GitHub
- URL: https://github.com/lukekarrys/activity-report
- Owner: lukekarrys
- License: mit
- Created: 2019-08-12T20:59:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T00:38:58.000Z (over 3 years ago)
- Last Synced: 2024-10-20T14:33:25.813Z (17 days ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# activity-report
Parse a CSV of Apple Watch activity data to see a report of your year-over-year data.
The [Activity++](https://apps.apple.com/us/app/activity/id1089666978) app can generate a CSV of this data.
```sh
npx activity-report Export.csv
```## Output
The output will show days meeting your goal vs total days for each year. It will also differentiate between days thru the current date and the year to date.
```
┌──────┬─────────────────┬──────────────────┬─────────────────┬─────────────────┬─────────────────┬─────────────────┐
│ │ MOVE (TODAY) │ EXERCISE (TODAY) │ STAND (TODAY) │ MOVE (YEAR) │ EXERCISE (YEAR) │ STAND (YEAR) │
├──────┼─────────────────┼──────────────────┼─────────────────┼─────────────────┼─────────────────┼─────────────────┤
│ 2016 │ 110/194 (56.7%) │ 130/194 (67.0%) │ 174/194 (89.7%) │ 210/366 (57.4%) │ 231/366 (63.1%) │ 328/366 (89.6%) │
├──────┼─────────────────┼──────────────────┼─────────────────┼─────────────────┼─────────────────┼─────────────────┤
│ 2017 │ 108/193 (56.0%) │ 117/193 (60.6%) │ 175/193 (90.7%) │ 108/193 (56.0%) │ 117/193 (60.6%) │ 175/193 (90.7%) │
└──────┴─────────────────┴──────────────────┴─────────────────┴─────────────────┴─────────────────┴─────────────────┘
```### LICENSE
MIT