Giter Site home page Giter Site logo

vicbi / healthkitonfhir Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stanfordbdhg/healthkitonfhir

0.0 0.0 0.0 139 KB

Converts HealthKit data to HL7 FHIR resources

Home Page: https://swiftpackageindex.com/StanfordBDHG/HealthKitOnFHIR/documentation

License: MIT License

Python 6.65% Swift 93.35%

healthkitonfhir's Introduction

HealthKitOnFHIR

Build and Test codecov DOI

The HealthKitOnFHIR library provides extensions that convert supported HealthKit samples to corresponding FHIR resources using FHIRModels encapsulated in a ResourceProxy.

For more information, please refer to the API documentation.

HealthKitOnFHIR supports:

  • Extensions to convert data from Apple HealthKit to HL7® FHIR® R4.
  • Customizable mappings between HealthKit data types and standardized codes (e.g., LOINC)

Please refer to the HKObject Support Table for a complete list of supported types.

Installation

HealthKitOnFHIR can be installed into your Xcode project using Swift Package Manager.

  1. In Xcode 14 and newer (requires Swift 5.7), go to “File” » “Add Packages...”
  2. Enter the URL to this GitHub repository, then select the HealthKitOnFHIR package to install.

Usage

The HealthKitOnFHIR library provides extensions that convert supported HealthKit samples to corresponding FHIR resources using FHIRModels encapsulated in a ResourceProxy.

let sample: HKSample = // ...
let resource = try sample.resource

Observations

HKQuantitySample, HKCategorySample, HKCorrelationSample, HKElectrocardiogram, and HKWorkout will be converted into FHIR Observation resources encapsulated in a ResourceProxy.

let sample: HKQuantitySample = // ...
let observation = try sample.resource.get(if: Observation.self)

Codes and units can be customized by passing in a custom HKSampleMapping instance to the resource(withMapping:) method.

let sample: HKQuantitySample = // ...
let sampleMapping: HKSampleMapping = // ...
let observation = try sample.resource(withMapping: sampleMapping).get(if: Observation.self)

Clinical Records

HKClinicalRecord will be converted to FHIR resources based on the type of its underlying data. Only records encoded in FHIR R4 are supported at this time.

let allergyRecord: HKClinicalRecord = // ...
let allergyIntolerance = try allergyRecord.resource.get(if: AllergyIntolerance.self)

Example

In the following example, we will query the HealthKit store for step count data, convert the resulting samples to FHIR observations, and encode them into JSON.

import HealthKitOnFHIR

// Initialize an HKHealthStore instance and request permissions with it
// ...

let date = ISO8601DateFormatter().date(from: "1885-11-11T00:00:00-08:00") ?? .now
let sample = HKQuantitySample(
    type: HKQuantityType(.heartRate),
    quantity: HKQuantity(unit: HKUnit.count().unitDivided(by: .minute()), doubleValue: 42.0),
    start: date,
    end: date
)

// Convert the results to FHIR observations
let observation: Observation?
do {
    try observation = sample.resource.get(if: Observation.self)
} catch {
    // Handle any mapping errors here.
    // ...
}

// Encode FHIR observations as JSON
let encoder = JSONEncoder()
encoder.outputFormatting = [.prettyPrinted, .withoutEscapingSlashes, .sortedKeys]

guard let observation, 
      let data = try? encoder.encode(observation) else {
    // Handle any encoding errors here.
    // ...
}

// Print the resulting JSON
let json = String(decoding: data, as: UTF8.self)
print(json)

The following example generates the following FHIR observation:

{
  "code" : {
    "coding" : [
      {
        "code" : "8867-4",
        "display" : "Heart rate",
        "system" : "http://loinc.org"
      }
    ]
  },
  "effectiveDateTime" : "1885-11-11T00:00:00-08:00",
  "identifier" : [
    {
      "id" : "8BA093D9-B99B-4A3C-8C9E-98C86F49F5D8"
    }
  ],
  "issued" : "2023-01-01T00:00:00-08:00",
  "resourceType" : "Observation",
  "status" : "final",
  "valueQuantity" : {
    "code": "/min",
    "unit": "beats/minute",
    "system": "http://unitsofmeasure.org",
    "value" : 42
  }
}

License

This project is licensed under the MIT License. See Licenses for more information.

Contributors

This project is developed as part of the Stanford Biodesign for Digital Health projects at Stanford. See CONTRIBUTORS.md for a full list of all HealthKitOnFHIR contributors.

Notices

HealthKit is a registered trademark of Apple, Inc. FHIR is a registered trademark of Health Level Seven International.

Stanford Byers Center for Biodesign Logo Stanford Byers Center for Biodesign Logo

healthkitonfhir's People

Contributors

vishnuravi avatar pschmiedmayer avatar mjoerke avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.