Skip to content

hhund/medicats

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 

Repository files navigation

medicats

Medical classification and terminology systems library for Java 1.8

Supported classifications and terminologies

The following classification and terminologies are currently supported by medicats

ICD 10

SGB-V 1.3, SGB-V 2.0, GM 2004, GM 2005, GM 2006, GM 2007, GM 2008, GM 2009, GM 2010, GM 2011, GM 2012, GM 2013, GM 2014, GM 2015, GM 2016, GM 2017, GM 2018, GM 2019, GM 2020

OPS

SGB-V 2.0, SGB-V, 2.1, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020

Alpha-ID

2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020

License

medicats is open source under the Apache License - Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Usage

Compiling medicats

Checkout medicats-parent and run maven install using maven version >= 3 (https://maven.apache.org):

mvn install
Additional Test/Runtime Dependencies

In order to run tests during the build or use this library at runtime you need to download additional zip-files from http://www.dimdi.de and place them in a folder defined by the java system property "dimdi.files.path". Do not unpack or modify the downloaded zip-files. The default value for this property is "dimdi". The property can be changed via runtime flag or source code:

java -Ddimdi.files.path="special/folder" -jar foo.jar
System.setProperty("dimdi.files.path", "special/folder");
Example Usage
import de.gecko.medicats.icd10.IcdNode;
import de.gecko.medicats.icd10.IcdNodeFactory;
import de.gecko.medicats.icd10.IcdNodeWalker;
import de.gecko.medicats.icd10.IcdService;

public class Example
{
	public static void main(String[] args)
	{
		IcdService icdService = IcdService.getService();
		
		IcdNodeFactory nodeFactory = icdService.getNodeFactory("icd10gm2015");
		
		IcdNodeWalker nodeWalker = nodeFactory.createNodeWalker();
		
		IcdNode dilatedCardiomyopathy = nodeWalker.getNodeByCode("I42.0");
	}
}
Medicats Webservice

A current version of the medicats webservice (module medicats-web) can be accessed at: https://medicats.gecko.hs-heilbronn.de

Download Links DIMDI

In case download links don't work, see https://www.dimdi.de/dynamic/de/klassifikationen/downloads/ for the latest.

ICD
ICD 10 GM 2020
ICD 10 GM 2019
ICD 10 GM 2018
ICD 10 GM 2017
ICD 10 GM 2016
ICD 10 GM 2015
ICD 10 GM 2014
ICD 10 GM 2013
ICD 10 GM 2012
ICD 10 GM 2011
ICD 10 GM 2010
ICD 10 GM 2009
ICD 10 GM 2008
ICD 10 GM 2007
ICD 10 GM 2006
ICD 10 GM 2005
ICD 10 GM 2004
ICD 10 SGB-V 2.0
ICD 10 SGB-V 1.3
OPS
OPS 2020
OPS 2019
OPS 2018
OPS 2017
OPS 2016
OPS 2015
OPS 2014
OPS 2013
OPS 2012
OPS 2011
OPS 2010
OPS 2009
OPS 2008 mit Erweiterung
OPS 2007 mit Erweiterung
OPS 2006 mit Erweiterung
OPS 2005 mit Erweiterung
OPS 2004 mit Erweiterung
OPS 2.1 mit Erweiterung
OPS 2.0
Alpha-ID
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011
2010
2009
2008
2007
2006
2005

About

medical classification and terminology systems

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published