-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/IwataGumi/Japan_covid_19_map
- Loading branch information
Showing
1 changed file
with
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
# Japan_covid_19_map | ||
# 都道府県別の新型コロナデータアプリ | ||
|
||
![japancovid19map-fptjq8vdssb5kmxsmk3oka streamlit app_](https://github.com/IwataGumi/Japan_covid_19_map/assets/70084358/319fced9-e7e3-4f34-a4e3-fb85397437a8) | ||
指定した期間の総感染者数の分布を表示するデータアプリケーションです。 | ||
|
||
# Install | ||
## Poetry | ||
1. Run poetry install | ||
``` | ||
poetry install | ||
``` | ||
2. Run the application | ||
``` | ||
poetry run python -m streamlit run main.py | ||
``` | ||
|
||
## Normal | ||
1. Install dependencies | ||
``` | ||
pip install -r requirements.txt | ||
``` | ||
2. Run app | ||
``` | ||
streamlit run main.py | ||
``` | ||
|
||
# その他 | ||
geojsonは国土交通省 国土地理院の [地球地図日本](https://www.gsi.go.jp/kankyochiri/gm_jpn.html) で公開しているデータを加工して使用しています。 | ||
感染者数のデータは[オープンデータ|厚生労働省](https://www.mhlw.go.jp/stf/covid-19/open-data.html)から持ってきています。 |