Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Latest commit

 

History

History
67 lines (47 loc) · 3.28 KB

index.md

File metadata and controls

67 lines (47 loc) · 3.28 KB

COVID-19 Tracker

Build Codebase Support

{% set data = frictionless.Resource('data/locations/OWID_WRL/latest.csv').read_rows(size=1)[0] %}

type: primary
text: "Last data update: <strong>{{ data.last_updated_date }}</strong> (this site is being updated on a nightly basis)."

Coronavirus disease 2019 (COVID-19), also known as COVID and the coronavirus, is a contagious disease caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2). The data dashboard has been created by the Frictionless Data team and it's open for contributing for anyone who is interested. The main COVID-19 data resources we use for this project are Our World in Data core data and Excess Mortality research.

Status

The main three core metrics we track: total deaths, total cases, and all the vaccination shots taken (worldwide):

{% with data=data %}
{% include 'blocks/status.html' %}
{% endwith %}

Deaths

Here is a timeline of the worldwide deaths caused by the COVID-19 pandemic:

{% with code='OWID_WRL', field='new_deaths', title='Deaths', color='red' %}
{% include 'blocks/charts/timeline.json' %}
{% endwith %}

New Cases

The new cases data is less reliable as cases registration really depends on the testing volume and methodology:

{% with code='OWID_WRL', field='new_cases', title='Cases', color='blue' %}
{% include 'blocks/charts/timeline.json' %}
{% endwith %}

Vaccinations

The vaccination campaign had been started around January 2021; this chart shows all the shots taken:

{% with code='OWID_WRL', field='new_vaccinations', title='Shots', color='green' %}
{% include 'blocks/charts/timeline.json' %}
{% endwith %}

Locations

Here is a summary of the key pandemic data:

{% with type='world' %}
{% include 'blocks/tables/locations.yaml' %}
{% endwith %}

About

The purpose of this site is to display analyzed COVID-19 data in a helpful way. On the homepage, you can find summary data for total counts of death, case numbers, and vaccinations from around the world. There are also separate pages displaying similar data but for specific world regions and countries, as well as displaying calculated data like excess mortality and rolling immunity. This site is build on the open source Frictionless Livemark tool, and all data collection information is freely shared on the data collection page. Additionally, all source code for the data visualisations can be found on the GitHub repository. Finally, this is a community project, and anyone is welcome to contribute!