Command-line tool to convert Apple HealthKit data to a SQLite database.
- Open the Health app on your iOS device.
- Click your profile icon in the top-right corner.
- Click the "Export All Health Data" button.
- Share the resulting ZIP archive to your computer.
- Run healthkit-to-sqlite on the exported ZIP archive.
# You need to install Rust https://rustup.rs/
cargo install healthkit-to-sqlite-cli
healthkit-to-sqlite export.zip sqlite://healthkit.db
Please create an issue for all bugs, feature requests, or feedback.
Here are a few example SQL queries to help you start exploring your HealthKit data:
- Total walking, running, and hiking workout duration in hours for the month of December 2022:
select
sum(duration) / 60 as total_duration
from
workout
where
(
creationDate between '2022-12-01' and '2022-12-31'
)
and (
workoutActivityType = 'HKWorkoutActivityTypeWalking' or
workoutActivityType = 'HKWorkoutActivityTypeRunning' or
workoutActivityType = 'HKWorkoutActivityTypeHiking'
);
- Total distance covered in miles across all workouts for the month of December 2022:
select
sum(
json_extract(
workoutStatistics,
"$.HKQuantityTypeIdentifierDistanceWalkingRunning.sum"
)
) as total_distance_miles
from
workout
where
(
creationDate between '2022-12-01'
and '2022-12-31'
);
- The JSON data in the
workoutStatistics
column looks like:
{
"HKQuantityTypeIdentifierActiveEnergyBurned": {
"endDate": "2019-12-27 13:10:51 -0800",
"startDate": "2019-12-27 12:30:15 -0800",
"sum": 135.70199584960938,
"type": "HKQuantityTypeIdentifierActiveEnergyBurned",
"unit": "Cal"
},
"HKQuantityTypeIdentifierBasalEnergyBurned": {
"endDate": "2019-12-27 13:10:51 -0800",
"startDate": "2019-12-27 12:30:15 -0800",
"sum": 67.24250030517578,
"type": "HKQuantityTypeIdentifierBasalEnergyBurned",
"unit": "Cal"
},
"HKQuantityTypeIdentifierDistanceWalkingRunning": {
"endDate": "2019-12-27 13:10:51 -0800",
"startDate": "2019-12-27 12:30:15 -0800",
"sum": 1.4269200563430786,
"type": "HKQuantityTypeIdentifierDistanceWalkingRunning",
"unit": "mi"
}
}
You can use https://datasette.io/ to view and explore the resulting SQLite database file.
datasette healthkit.db
- Install the https://datasette.io/plugins/datasette-geojson-map plugin to visualize all workout routes in the
Workout
table on a single map. - Install the https://github.com/simonw/datasette-leaflet-geojson plugin to render an in-row map for each workout route in the
Workout
table.
datasette install datasette-geojson-map
datasette install datasette-leaflet-geojson
- Only the
Record
,Workout
, andActivitySummary
elements are currently exported. Record
elements are inserted to a table with a name matching the value of the element'stype
attribute.Workout
elements are inserted to a table named "Workout".- The descendent
workoutEvent
andworkoutStatistics
elements are represented as JSON columns. - The descendent
workoutRoute
element is converted to a GeoJSON LineString and stored in a JSON column named "geometry" for easy integration with https://datasette.io/plugins/datasette-geojson-map.
- The descendent
ActivitySummary
elements are inserted as rows to a table named "ActivitySummary".- In an attempt to future proof against Apple adding, removing, or changing element attributes, the code only assumes the existence of a limited number of attributes:
Record
elements must have atype
attribute.Workout
elements must have aworkoutActivity
attribute.MetadataEntry
elements must havekey
andvalue
attributes.FileReference
elements must have apath
attribute.
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.