This repository was archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
119 lines (109 loc) · 3.41 KB
/
template.html
File metadata and controls
119 lines (109 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>MO-VID</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kanit:wght@300;700&display=swap"
rel="stylesheet"
/>
<style type="text/css">
body {
background: #ddd;
font-family: "Kanit", "HelveticaNeue", sans-serif;
margin: 0;
padding: 0;
}
main {
background: white;
margin: 0 auto;
min-height: calc(100vh - 2em);
padding: 2em 2em 0 2em;
width: 800px;
}
main h1 {
margin-top: 0;
}
main p {
line-height: 1.4em;
}
img {
margin: 0 auto;
max-width: 70%;
}
</style>
</head>
<body>
<main>
<h1>Missouri COVID data</h1>
<p>
The data on this page was updated <strong>{{ updated }}</strong>. For
the values that are averages over 7 days, the start date is
<strong>{{ start }}</strong> and the end date is
<strong>{{ end }}</strong>. The original data comes from the
<a
href="https://results.mo.gov/t/COVID19/views/WeeklyCOVIDMockup_16487370423730/WeeklyReport-Revised-v2?:embed=y&:showVizHome=no&:host_url=https%3A%2F%2Fresults.mo.gov%2F&:embed_code_version=3&:tabs=no&:toolbar=no&:showAppBanner=false&:display_spinner=no&:loadOrderID=0"
>Missouri Department of Health and Senior Services</a
>.
</p>
<h2>Download</h2>
<p>
This data is available to download as CSV, JSON, or a sqlite database.
To read more about the data formats, please
<a href="https://github.com/mgwalker/mo-vid#the-data"
>check the project </a
>README.
</p>
<table>
<tbody>
<tr>
<td>
<a href="mo-vid.csv" download>CSV</a>
</td>
<td>
<a href="mo-vid.json" download>JSON</a>
</td>
<td>
<a href="mo-vid.sqlite" download>sqlite</a>
</td>
</tr>
</tbody>
</table>
<h2>New cases</h2>
<p>
There have been <strong>{{ new_cases_7_day }}</strong> new cases in the
past 7 days, about <strong>{{ avg_per_day }} per day</strong>.
</p>
<img src="charts/totalPositive.png" />
<h2>Outcomes</h2>
<p>
There are currently {{ hospitalizations }} people hospitalized with
COVID-19.
</p>
<img src="charts/hospitalizations.png" />
<p>{{ icu }} people are in intensive care.</p>
<img src="charts/icu.png" />
<h2>Unavailable</h2>
<p>
Starting January 18, 2022, the Missouri Department of Health and Senior
Services no longer reports the number of people on ventilators.
</p>
<p>
The following sets of data are no longer available as of April 1, 2022:
</p>
<ul>
<li>new vaccinations</li>
<li>tests administered</li>
<li>positivity rate</li>
<li>deaths (only displayed in a graph now)</li>
</ul>
<p>
The data also previously distinguished between "confirmed" and
"probable" cases, based on what kind of test was used. That is also no
longer available.
</p>
</main>
</body>
</html>