Code Monkey home page Code Monkey logo

epmobile-ios's Introduction

EP Mobile

Build Status

Tools for electrophysiologists and cardiologists

EP Mobile is an Apple iOS application that provides a set of tools for electrophysiologists and other health care workers who deal with cardiac arrhythmias. The program includes EP calculators, drug dose calculators, risk scores, diagnostic tools, ECG figures, and more.

EP Mobile for iOS is open source, and licensed under the Apache License, Version 2.0

Copyright

Copyright © 2012-2024 EP Studios, Inc.

Sources

The AV annulus figure is modified from Gray's Anatomy 20th edition, which is in the public domain (copyright from 1918 expired).

The wide complex tachycardia ECG patterns were redrawn and relabeled from ECGpedia.org, and the long QT ECG patterns were from the same source, both courtesy of Dr. De Voogt and ECGpedia.org. They are licensed under the Creative Commons Attribution-NonCommercial 3.0 Netherlands (CC BY-NC 3.0).

The Brugada syndrome ECG pattern figure is from Napolitano C, Priori SG. Brugada syndrome. Orphanet J Rare Dis. 1, 35. 2006. doi:10.1186/1750-1172-1-35. It is licensed under the Creative Commons Attribution 2.0 Generic License.

Due to screen size limitations, all references are not included in the iOS version. Complete references will be available on the EP Studios website.

The ARVC risk calculator is based on a similar calculator on the web. It is based on this paper and is used with the kind permission of the investigators.

Author

David Mann

Email: [email protected]
Website: http://www.epstudiossoftware.com

epmobile-ios's People

Contributors

mannd avatar

Stargazers

卓智斌 avatar Khalid ElSayed avatar Allison E Mann avatar  avatar mayulu avatar

Watchers

 avatar mayulu avatar James Cloos avatar  avatar

epmobile-ios's Issues

make SI creatinine clearance more accurate

see http://www.sydpath.stvincents.com.au/other/CalcsCrClCGumol.htm

use more significant figures as below:

public static double calculateDouble(boolean isMale, double age,
        double weight, double creatinine, boolean usingMicroMolUnits) {
    double crClr = (140.0 - age) * weight;
    if (!usingMicroMolUnits) {

        crClr = crClr / (72 * creatinine);
        if (!isMale)
            crClr = crClr * 0.85;
    } else {
        if (isMale)
            crClr = crClr * 1.2291;
        else
            crClr = crClr * 1.0447;
        crClr = crClr / creatinine;
    }
    return crClr;
}

make figures zoomable

figures will need to be in webview and not imageview
also should make figure rotatable

apixaban in messages

Add apixaban to rest of Chads score messages when anticoagulation recommended (is only in one message).

Apixaban

make sure Apixaban mentioned in risk scores wherever Xarelto mentioned.

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.