-
Notifications
You must be signed in to change notification settings - Fork 24
/
forecast.html
49 lines (44 loc) · 1.62 KB
/
forecast.html
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
<!DOCTYPE html><html><head><meta charset="utf-8">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162141832-1"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag(){dataLayer.push(arguments)}
gtag('js', new Date())
gtag('config', 'UA-162141832-1')
</script>
<title>COVID-19 Japan 都道府県別感染者予測</title>
<style>
body {
font-family: sans-serif;
text-align: center;
}
h1 {
font-size: 4vw;
text-align: center;
}
h2 {
font-size: 2.5vw;
}
.src {
font-size: 85%;
}
</style>
</head>
<body>
<h1>COVID-19 Japan 都道府県別感染者予測</h1>
<script type="module" src="forecast-graph.mjs"></script>
<forecast-graph view-src=true></forecast-graph>
<div class=src>
App: <a href=https://fukuno.jig.jp/3037>厚労省CSVオープンデータを使ったGoogle社による感染者予測サイト、公開データを使って都道府県別グラフ表示アプリを開発 - 一日一創 福野泰介</a><br>
Data: <a href=https://github.com/code4sabae/covid19/tree/master/data/covid19forecast/google>Google社予測のデータ</a>(<a href=https://storage.googleapis.com/covid-external/COVID-19ForecastUserGuideJapan_Japanese.pdf>ユーザーガイド、利用規約</a>)<br>
Related: <a href=forecast_chkans.html>COVID-19 Japan 都道府県別 感染者予測と結果</a><br>
</div>
<div style="margin:1em;text-align:center;">
<a href="https://www.stopcovid19.jp/">
<img src=img/stopcovid19_banner.png style="width:70vw"><br>
「COVID-19 JAPAN 新型コロナウイルス対策ダッシュボード」<br>
</a>
</div>
</body>
</html>