-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96d5199
commit d75ae04
Showing
4 changed files
with
113 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{\rtf1\ansi\ansicpg1252\cocoartf2709 | ||
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;} | ||
{\colortbl;\red255\green255\blue255;} | ||
{\*\expandedcolortbl;;} | ||
\margl1440\margr1440\vieww11520\viewh8400\viewkind0 | ||
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 | ||
|
||
\f0\fs24 \cf0 --sql server CDM DDL Specification for OMOP CDM Medical Imaging Ext\ | ||
CREATE TABLE image_occurrence(\ | ||
image_occurrence_id integer NOT NULL,\ | ||
person_id integer NOT NULL,\ | ||
procedure_occurrence_id integer NOT NULL,\ | ||
visit_occurrence_id integer,\ | ||
anatomic_site_concept_id integer,\ | ||
wadors_uir varchar(max),\ | ||
local_path varchar(max) NOT NULL,\ | ||
image_occurrence_date date NOT NULL,\ | ||
image_study_uid varchar(max) NOT NULL,\ | ||
image_series_uid varchar(max) NOT NULL,\ | ||
modality varchar(250) NOT NULL);\ | ||
\ | ||
CREATE TABLE image_feature(\ | ||
image_feature_id integer NOT NULL,\ | ||
person_id integer NOT NULL,\ | ||
image_occurrence_id integer NOT NULL,\ | ||
table_concept_id integer NOT NULL,\ | ||
table_row_id integer NOT NULL,\ | ||
image_feature_concept_id integer NOT NULL,\ | ||
image_feature_type_concept_id integer NOT NULL,\ | ||
image_finding_concept_id integer,\ | ||
image_finding_id integer,\ | ||
anatomic_site_concept_id integer,\ | ||
alg_system varchar(max),\ | ||
alg_datetime datetime);} |
13 changes: 13 additions & 0 deletions
13
ddl/Sql Server/OMOP_CDM_Medical_Imaging_Ex_Field_Level.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
cdmTableName,cdmFieldName,isRequired,cdmDatatype,userGuidance | ||
image_feature,image_feature_id,Yes ,integer ,The unique key is given to an imaging feature. | ||
image_feature,person_id,Yes ,integer,The person_id of the Person table for whom the the procedure is recorded. This can be a system-generated code or adopted from original source. | ||
image_feature,image_occurrence_id,Yes,integer,The unique key of the Image_occurrence table. | ||
image_feature,table_concept_id,Yes,integer,"The concept_id of the domain table that feature is stored in Measurement, Observation, etc. This concept should be used with the table_row_id." | ||
image_feature,table_row_id,Yes,integer,The row_id of the domain table that feature is stored. | ||
image_feature,image_feature_concept_id,Yes,integer,Concept_id of standard vocabulary—often a LOINC or RadLex of image features | ||
image_feature,image_feature_type_concept_id,Yes,integer ,"This field can be used to determine the provenance of the imaging features (e.g., DICOM SR, algorithms used on images)" | ||
image_feature,image_finding_concept_id,No,integer,"RadLex or other terms of the groupings of image feature (e.g., nodule)" | ||
image_feature,image_finding_id,No,integer ,Integer for linking related image features. It should not be interpreted as an order of clinical relevance. | ||
image_feature,anatomic_site_concept_id,No,integer ,This is the site on the body where the feature was found. It maps the ANATOMIC_SITE_SOURCE_VALUE to a Standard Concept in the Spec Anatomic Site domain. | ||
image_feature,alg_system ,No ,varchar(max),"URI of the algorithm that extracted features, including version information" | ||
image_feature,alg_datetime ,No ,datetime ,The date and time of the algorithm processing. |
65 changes: 65 additions & 0 deletions
65
ddl/Sql Server/OMOP_CDM_Medical_Imaging_Ext_Field_Level.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
cdmTableName,cdmFieldName,isRequired,cdmDatatype,userGuidance | ||
image_occurrence,image_occurrence_id,Yes,integer ,The unique key is given to an imaging study record (often referred to as the accession number or imaging order number) | ||
image_occurrence,person_id,Yes,integer,The person_id of the Person for whom the procedure is recorded. This can be a system-generated code or adopted from original source. | ||
image_occurrence,procedure_occurrence_id,Yes,integer ,The unique key is given to a procedure record for a person. Link to the Procedure_occurrence table. | ||
image_occurrence,visit_occurrence_id,No,integer,The unique key is given to the visit record for a person. Link to the Visit_occurrence table. | ||
image_occurrence,anatomic_site_concept_id,No,integer,Anatomical location of the imaging procedure by the medical acquisition device (gross anatomy). It maps the ANATOMIC_SITE_SOURCE_VALUE to a Standard Concept in the Spec Anatomic Site domain. This should be coded at the lowest level of granularity. | ||
image_occurrence,wadors_uri ,No ,varchar (max) ,A Web Access to DICOM Objects via Restful Web Services Uniform Resource Identifier on study level. | ||
image_occurrence,local_path,Yes,varchar (max),"Universal Naming Convention (UNC) path to the folder containing the image object file access via a storage block access protocol. (e.g., \\Server\Directory)" | ||
image_occurrence,image_occurrence_date ,Yes,date ,The date the imaging procedure occurred. | ||
image_occurrence,image_study_UID ,Yes,varchar (250) ,DICOM Study UID | ||
image_occurrence,image_series_UID ,Yes ,varchar (250) ,DICOM Series UID | ||
image_occurrence,modality ,Yes ,varchar (250) ,"DICOM-defined value (e.g., US, CT, MR, PT, DR, CR, NM)" | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, | ||
,,,, |