Skip to content

Commit 34e8509

Browse files
authored
Update notice and PPE text
Update notice and PPE text
2 parents 6eda172 + 571e970 commit 34e8509

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

src/penn_chime/locales/en.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ en:
33
app-new-admissions-text: "Projected number of **daily** COVID-19 admissions."
44
app-admitted-patients-title: "Admitted Patients (Census)"
55
app-admitted-patients-text: "Projected **census** of COVID-19 patients, accounting for arrivals and discharges."
6-
app-PPE-title: "Personal Protective Equipment (PPE) Calculator"
7-
app-PPE-screenshot: "Show a screenshot of the tool"
6+
app-PPE-title: "Personal Protective Equipment (PPE) Forecasting Calculator"
7+
app-PPE-screenshot: "Show a screenshot of the calculator"
88
app-PPE-documentation: |+
9-
Refer to our <a href="{link_to_docs}">user documentation for instructions on how to use the tool</a>.
9+
Refer to our <a href="{link_to_docs}">user documentation for instructions on how to use the calculator</a>.
1010
app-SIR-title: "Susceptible, Infected, and Recovered"
1111
app-SIR-text: "The number of susceptible, infected, and recovered individuals in the hospital catchment region at any given moment"
1212
charts-date: "Date"
@@ -17,18 +17,24 @@ en:
1717
presentation-header: |+
1818
<link rel="stylesheet" href="https://www1.pennmedicine.org/styles/shared/penn-medicine-header.css">
1919
<div class="penn-medicine-header__content">
20-
<a href="https://www.pennmedicine.org" class="penn-medicine-header__logo"
21-
title="Go to the Penn Medicine home page">Penn Medicine</a>
22-
<a id="title" class="penn-medicine-header__title">COVID-19 Hospital Impact Model for Epidemics (CHIME)</a>
20+
<h3>
21+
<a href="https://www.pennmedicine.org" class="penn-medicine-header__logo"
22+
title="Go to the Penn Medicine home page">Penn Medicine</a>
23+
<a id="title" class="penn-medicine-header__title">COVID-19 Hospital Impact Model for Epidemics (CHIME)</a>
24+
</h3>
2325
</div>
26+
<br />
2427
presentation-notice: |+
25-
**Notice**: *There is a high
26-
degree of uncertainty about the details of COVID-19 infection, transmission, and the effectiveness of social distancing
27-
measures. Long-term projections made using this simplified model of outbreak progression should be treated with extreme caution.*
28+
29+
**Notice**: CHIME is a modified [SIR](https://mathworld.wolfram.com/SIRModel.html) model of outbreak progression that is limited to short term forecasting.
30+
It is only applicable during the period prior to a region’s peak infections, and it accounts only for a single significant social distancing policy.
31+
Penn Medicine is actively developing [BayesCHIME](https://github.com/pennsignals/chime_sims/blob/master/README.md) to make use of more data and provide probabilistic forecasts beyond peak infections.
2832
presentation-developed-by: |+
2933
This tool was developed by [Predictive Healthcare](http://predictivehealthcare.pennmedicine.org/) at
3034
Penn Medicine to assist hospitals and public health officials with hospital capacity planning.
3135
Please read [How to Use CHIME]({docs_url}) to customize inputs for your region.
36+
The Personal Protective Equipment (PPE) Forecasting Calculator was developed collaboratively by
37+
the University of Pennsylvania and Penn Medicine.
3238
presentation-estimated-number-of-infection: |+
3339
The estimated number of currently infected individuals is **{total_infections:.0f}**. This is based on current inputs for
3440
Hospitalizations (**{current_hosp}**), Hospitalization rate (**{hosp_rate:.0%}**), Regional population (**{S}**),
@@ -86,7 +92,7 @@ en:
8692
presentation-download: |+
8793
<a download="{filename}" href="data:file/csv;base64,{csv}">Download {filename}</a>
8894
presentation-excel-download: |+
89-
Download the PPE Calculator here: <a download="{filename}" href="data:file/xlsx;base64,{excel}">{filename}</a>.
95+
Download the PPE Forecasting Calculator: <a download="{filename}" href="data:file/xlsx;base64,{excel}">{filename}</a>.
9096
admits_hospitalized: "Hospitalized Admissions"
9197
admits_icu: "ICU Admissions"
9298
admits_ventilated: "Ventilated Admissions"
@@ -97,4 +103,4 @@ en:
97103
infected: "Infected"
98104
recovered: "Recovered"
99105
day: "Day"
100-
date: "Date"
106+
date: "Date"

src/penn_chime/view/st_display.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,9 @@ def display_header(st, m, p):
5656
i18n.t("presentation-header"),
5757
unsafe_allow_html=True,
5858
)
59-
st.markdown(
60-
i18n.t("presentation-notice")
61-
)
62-
st.markdown(
63-
i18n.t("presentation-developed-by").format(docs_url=DOCS_URL))
64-
59+
st.markdown(i18n.t("presentation-notice"))
60+
st.markdown(i18n.t("presentation-developed-by").format(
61+
docs_url=DOCS_URL))
6562
st.markdown(
6663
i18n.t("presentation-estimated-number-of-infection")
6764
.format(

0 commit comments

Comments
 (0)