commit | a211ad5ce07e728d8b0c7cfcfd2dd5b4656c6c61 | [log] [tgz] |
---|---|---|
author | avm99963 <me@avm99963.com> | Mon Jul 13 13:49:25 2020 +0200 |
committer | avm99963 <me@avm99963.com> | Mon Jul 13 13:49:25 2020 +0200 |
tree | 60971df828ccb81f5cfea2f5e69383653a1b7a29 | |
parent | cb3737f614b4d0c32b81cb6aa3a421c6b0ceca82 [diff] |
Adds link to Dades Obertes (gencat) Change-Id: If96a8d6ac662ad4cc7c451805755e6ab8501c2c9
This is the code for https://covid-19.sandbox.avm99963.com, which contains graphs which determine the level of risk of each Catalan health area due to the COVID-19, based on the work of the BIOCOMSC group at the Polytechnic University of Catalonia (UPC).
DISCLAIMER: The data shown in the website might be wrong due to a wrong implementation.
This software is meant to be used with Apache2 in order to serve a static website including the latest Covid-19 data.
To install it, follow these steps:
git clone "https://gerrit.avm99963.com/covid19"
.covid19/cron
and runs the bash generate.bash
command every day early in the morning.crontab -e
and place the following line at the end of the document: 0 2 * * * (cd /path/to/covid19/cron/ && bash generate.bash)
Each day, the generate.bash
script will generate the graphs at the covid19/output
folder.
bash generate.bash
command anytime from the covid19/cron
directory in order to manually generate the graphs.This is what each file does:
index.html
: a web accessible document which includes a disclaimer text, a key for the graphs, and the generated graphs themselves.cron
folder: a non-web accessible folder which contains programs which ultimately generate the graphs.cron/generate.bash
: a Bash script which orchestrates all the other programs in the folder in order to generate the graphs.cron/generateData.php
: a PHP script which extracts the Covid-19 data from the Generalitat de Catalunya's API and analyzes that data to generate the ρ7 and IA14 values needed by cron/generateGraphs.gnu
.cron/generateGraphs.gnu
: a gnuplot script which generates the graphs with the data which has been provided by the cron/generateData.php
. It uses the helper script cron/plot.gnu
.output
folder: a folder created by the generate.bash
script where the generated graphs are saved.