Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,16 @@
|
|
1 |
import streamlit as st
|
2 |
st.markdown("""
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
# FHIR Map to CCD
|
5 |
| CCD Templates | Emoji | FHIR Resources |
|
6 |
|---------------|-------|----------------|
|
@@ -14,7 +24,7 @@ st.markdown("""
|
|
14 |
| Immunizations | π
| [Immunization](https://www.hl7.org/fhir/immunization.html) |
|
15 |
|
16 |
|
17 |
-
#
|
18 |
|
19 |
## 1. π₯ Patient Demographics
|
20 |
| Attribute | Description |
|
@@ -82,9 +92,7 @@ st.markdown("""
|
|
82 |
| Note Author | Healthcare provider who wrote the note |
|
83 |
| Note Content | Content of the note |
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
# Example Messages for inputs of ADT, ORM, SIU, EDI, Procedures, Observations
|
88 |
|
89 |
## ADT (Admit/Discharge/Transfer) messages
|
90 |
| Patient ID | Name | Admission Date/Time | Discharge Date/Time | Clinical Encounter |
|
@@ -117,18 +125,6 @@ st.markdown("""
|
|
117 |
|------------------|--------------------------|-----------------------------------|
|
118 |
| Blood Pressure | 2023-05-10 09:00 | 120/80 mmHg |
|
119 |
|
120 |
-
|
121 |
-
|
122 |
-
# π₯ CCD (Consolidated Clinical Document Architecture) π
|
123 |
-
The CCD is a document standard developed by Health Level Seven International (HL7) for the exchange of clinical information. π It is a universally accepted format for sharing clinical data across different electronic health record (EHR) systems. π
|
124 |
-
|
125 |
-
## π CCD Standard Templates π
|
126 |
-
The CCD standard includes templates for different types of clinical documents, like:
|
127 |
-
- π€ Discharge summaries
|
128 |
-
- ποΈ Progress notes
|
129 |
-
- π Clinical summaries
|
130 |
-
These templates are based on existing document standards like the Continuity of Care Record (CCR). β
|
131 |
-
|
132 |
## π Translation to CCD Format ποΈ
|
133 |
To translate different healthcare documents to the CCD format, follow these guidelines:
|
134 |
1. **ADT (Admit/Discharge/Transfer) messages** π₯
|
|
|
1 |
import streamlit as st
|
2 |
st.markdown("""
|
3 |
|
4 |
+
# π₯ CCDA (Consolidated Clinical Document Architecture) π
|
5 |
+
The CCD is a document standard developed by Health Level Seven International (HL7) for the exchange of clinical information. π It is a universally accepted format for sharing clinical data across different electronic health record (EHR) systems. π
|
6 |
+
|
7 |
+
## π CCD Standard Templates π
|
8 |
+
The CCD standard includes templates for different types of clinical documents, like:
|
9 |
+
- π€ Discharge summaries
|
10 |
+
- ποΈ Progress notes
|
11 |
+
- π Clinical summaries
|
12 |
+
These templates are based on existing document standards like the Continuity of Care Record (CCR). β
|
13 |
+
|
14 |
# FHIR Map to CCD
|
15 |
| CCD Templates | Emoji | FHIR Resources |
|
16 |
|---------------|-------|----------------|
|
|
|
24 |
| Immunizations | π
| [Immunization](https://www.hl7.org/fhir/immunization.html) |
|
25 |
|
26 |
|
27 |
+
# CCD Documents - Standard Templates
|
28 |
|
29 |
## 1. π₯ Patient Demographics
|
30 |
| Attribute | Description |
|
|
|
92 |
| Note Author | Healthcare provider who wrote the note |
|
93 |
| Note Content | Content of the note |
|
94 |
|
95 |
+
# Messages for ADT, ORM, SIU, EDI, Procedures, Observations
|
|
|
|
|
96 |
|
97 |
## ADT (Admit/Discharge/Transfer) messages
|
98 |
| Patient ID | Name | Admission Date/Time | Discharge Date/Time | Clinical Encounter |
|
|
|
125 |
|------------------|--------------------------|-----------------------------------|
|
126 |
| Blood Pressure | 2023-05-10 09:00 | 120/80 mmHg |
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
## π Translation to CCD Format ποΈ
|
129 |
To translate different healthcare documents to the CCD format, follow these guidelines:
|
130 |
1. **ADT (Admit/Discharge/Transfer) messages** π₯
|