Top Related Projects
Data on COVID-19 (coronavirus) cases, deaths, hospitalizations, tests • All countries • Updated daily by Our World in Data
COVID-19 App
Coronavirus tracker app for iOS & macOS with maps & charts
Tracking the impact of COVID-19 in India
🦠 A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the 🔥 FastAPI framework. Supports multiple sources!
Quick Overview
The CSSEGISandData/COVID-19 repository is a data collection project maintained by the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE). It provides daily updates on COVID-19 cases, deaths, and recoveries worldwide, serving as a crucial resource for researchers, policymakers, and the public during the global pandemic.
Pros
- Comprehensive global coverage with data from various countries and regions
- Regularly updated, providing timely information on the pandemic's progression
- Open-source and freely accessible, promoting transparency and collaboration
- Widely used and cited in academic research and media reports
Cons
- Data quality can vary depending on reporting practices of different countries
- Occasional inconsistencies or delays in data updates
- Limited granularity for some regions, especially at sub-national levels
- Challenges in maintaining consistency as reporting methods change over time
Code Examples
As this is primarily a data repository rather than a code library, there are no specific code examples to provide. However, users often utilize data analysis tools and libraries to work with the data, such as pandas in Python or tidyverse in R.
Getting Started
While there's no code library to start with, you can access the data by following these steps:
- Visit the repository: https://github.com/CSSEGISandData/COVID-19
- Navigate to the
csse_covid_19_data/csse_covid_19_time_series
folder - Download the desired CSV files (e.g.,
time_series_covid19_confirmed_global.csv
) - Use your preferred data analysis tool to load and analyze the data
For example, using Python with pandas:
import pandas as pd
# Load global confirmed cases data
url = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv"
df = pd.read_csv(url)
# Display the first few rows
print(df.head())
This will load the global confirmed cases data into a pandas DataFrame for further analysis.
Competitor Comparisons
Data on COVID-19 (coronavirus) cases, deaths, hospitalizations, tests • All countries • Updated daily by Our World in Data
Pros of covid-19-data
- More comprehensive global dataset, including testing data and excess mortality
- Cleaner, more standardized data format
- Includes additional calculated metrics like case fatality rates
Cons of covid-19-data
- Less granular data for some countries (e.g., no county-level data for the US)
- Updates may be less frequent than COVID-19
- Smaller community of contributors
Code comparison
COVID-19 data format (CSV):
Province/State,Country/Region,Lat,Long,Date,Confirmed,Deaths,Recovered
New York,US,40.7128,-74.0060,2021-03-01,1000000,50000,900000
covid-19-data format (CSV):
location,date,total_cases,new_cases,total_deaths,new_deaths,total_vaccinations
United States,2021-03-01,28756489,56079,515151,1431,76899987
The covid-19-data repository uses a more standardized format with consistent column names and data types. It also includes additional metrics like vaccinations, which are not present in the COVID-19 repository. However, COVID-19 provides more detailed geographical information for some countries, such as province/state-level data.
Both repositories are valuable resources for COVID-19 data, with each having its strengths and weaknesses. Researchers and data analysts may choose one over the other based on their specific needs and the level of detail required for their analysis.
COVID-19 App
Pros of WHO app
- Official WHO-backed application, providing authoritative information
- Multi-platform support (iOS, Android, Web) for wider accessibility
- Includes features like symptom checker and travel advice
Cons of WHO app
- Less frequent updates compared to COVID-19 dataset
- Focused on general public use rather than comprehensive data for researchers
- Limited historical data availability
Code comparison
COVID-19:
df = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv')
df = df.melt(id_vars=['Province/State', 'Country/Region', 'Lat', 'Long'], var_name='Date', value_name='Confirmed')
WHO app:
Future<List<CountryStats>> fetchCountryStats() async {
final response = await http.get('https://api.who.int/country-stats');
if (response.statusCode == 200) {
return parseCountryStats(response.body);
} else {
throw Exception('Failed to load country stats');
}
}
The COVID-19 repository provides raw CSV data that can be easily processed using data analysis tools, while the WHO app uses an API to fetch and display data within the application. The COVID-19 dataset is more suitable for researchers and data scientists, whereas the WHO app is designed for public consumption and awareness.
Coronavirus tracker app for iOS & macOS with maps & charts
Pros of CoronaTracker
- Provides a user-friendly iOS app for visualizing COVID-19 data
- Offers real-time updates and notifications for users
- Includes additional features like news updates and prevention tips
Cons of CoronaTracker
- Limited to iOS platform, reducing accessibility for non-Apple users
- May have a smaller dataset compared to the comprehensive COVID-19 repository
- Potentially slower updates due to app store approval processes
Code Comparison
COVID-19 repository (Python):
import pandas as pd
url = 'https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv'
df = pd.read_csv(url)
CoronaTracker (Swift):
import Foundation
struct CovidData: Codable {
let confirmed: Int
let deaths: Int
let recovered: Int
let date: Date
}
The COVID-19 repository focuses on providing raw data in CSV format, which can be easily processed using data analysis tools. CoronaTracker, on the other hand, is designed as an iOS application, with data structures optimized for mobile app usage and user interface integration.
Tracking the impact of COVID-19 in India
Pros of covid19india-react
- More user-friendly interface with interactive visualizations
- Focuses specifically on India, providing detailed state-level data
- Includes additional features like vaccination tracking and testing data
Cons of covid19india-react
- Limited to India-specific data, not suitable for global analysis
- May have less frequent updates compared to the JHU dataset
- Potentially less comprehensive historical data
Code Comparison
COVID-19 (Python):
import pandas as pd
url = 'https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv'
df = pd.read_csv(url)
covid19india-react (JavaScript):
import axios from 'axios';
const API_ROOT_URL = 'https://api.covid19india.org/v4/min';
const fetchData = async () => {
const response = await axios.get(`${API_ROOT_URL}/data.min.json`);
return response.data;
};
The COVID-19 repository provides raw CSV data that can be easily processed using data analysis tools like pandas. In contrast, covid19india-react offers a more structured API approach, returning JSON data that can be directly used in web applications. The COVID-19 dataset is more suitable for researchers and data scientists, while covid19india-react is designed for developers building web-based dashboards and applications specific to India's COVID-19 situation.
🦠 A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the 🔥 FastAPI framework. Supports multiple sources!
Pros of coronavirus-tracker-api
- Provides a RESTful API for easy integration with other applications
- Offers real-time data updates through API endpoints
- Includes data visualization tools and interactive maps
Cons of coronavirus-tracker-api
- May have less comprehensive historical data compared to COVID-19
- Potentially slower data updates due to reliance on third-party sources
- Limited to API access, which may not be suitable for all use cases
Code Comparison
COVID-19 (Data format example):
Province/State,Country/Region,Last Update,Confirmed,Deaths,Recovered
Hubei,Mainland China,2020-02-15T23:13:05,56249,1596,5623
coronavirus-tracker-api (API response example):
{
"latest": {
"confirmed": 1234567,
"deaths": 98765,
"recovered": 543210
},
"locations": [
{
"country": "China",
"province": "Hubei",
"latest": {
"confirmed": 56249,
"deaths": 1596,
"recovered": 5623
}
}
]
}
The COVID-19 repository provides raw CSV data, while coronavirus-tracker-api offers structured JSON responses through its API, making it easier to integrate into applications but potentially limiting direct access to the underlying data.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
COVID-19 Data Repository by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University
On March 10, 2023, the Johns Hopkins Coronavirus Resource Center ceased its collecting and reporting of global COVID-19 data. For updated cases, deaths, and vaccine data please visit the following sources:
For more information, visit the Johns Hopkins Coronavirus Resource Center.
This is the data repository for the 2019 Novel Coronavirus Visual Dashboard operated by the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE). Also, Supported by ESRI Living Atlas Team and the Johns Hopkins University Applied Physics Lab (JHU APL).
Visual Dashboard (desktop): https://www.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6
Visual Dashboard (mobile): http://www.arcgis.com/apps/opsdashboard/index.html#/85320e2ea5424dfaaa75ae62e5c06e61
Please cite our Lancet Article for any use of this data in a publication: An interactive web-based dashboard to track COVID-19 in real time
Provided by Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE): https://systems.jhu.edu/
DONATE to the CSSE dashboard team: https://engineering.jhu.edu/covid-19/support-the-csse-covid-19-dashboard-team/
DATA SOURCES: This list includes a complete list of all sources ever used in the data set, since January 21, 2020. Some sources listed here (e.g. ECDC, US CDC, BNO News) are not currently relied upon as a source of data.
-
Aggregated data sources:
- World Health Organization (WHO): https://www.who.int/
- European Centre for Disease Prevention and Control (ECDC): https://www.ecdc.europa.eu/en/geographical-distribution-2019-ncov-cases
- DXY.cn. Pneumonia. 2020. https://ncov.dxy.cn/ncovh5/view/pneumonia?from=dxy&source=&link=&share=
- QQ News https://news.qq.com/zt2020/page/feiyan.htm#/
- US CDC: https://www.cdc.gov/coronavirus/2019-ncov/index.html
- BNO News: https://bnonews.com/index.php/2020/02/the-latest-coronavirus-cases/
- WorldoMeters: https://www.worldometers.info/coronavirus/
- 1Point3Arces: https://coronavirus.1point3acres.com/en
- COVID Tracking Project: https://covidtracking.com/data. (US Testing and Hospitalization Data. We use the maximum reported value from "Currently" and "Cumulative" Hospitalized for our hospitalization number reported for each state.)
- Los Angeles Times: https://www.latimes.com/projects/california-coronavirus-cases-tracking-outbreak/
- The Mercury News: https://www.mercurynews.com/tag/coronavirus/
-
US data sources at the state (Admin1) or county/city (Admin2) level:
- Alabama: Department of Public Health
- Alaska: Department of Health and Social Services
- Arizona: Department of Health Services
- Arkansas: Department of Health
- California: Department of Public Health
- Mariposa County
- Alameda County
- Fresno County
- Humboldt County
- Imperial County
- Los Angeles County
- Madera County
- Marin County
- Mendocino County
- Orange County
- Placer County
- Riverside County
- Sacramento County
- San Benito County
- San Bernardino County
- San Diego County
- San Francisco
- San Joaquin County
- San Mateo County
- Santa Clara County
- Santa Cruz County
- Shasta County
- Solano County
- Sonoma County
- Stanislaus County
- Ventura County
- Yolo County
- Colorado: Department of Public Health and Environment
- Connecticut: Department of Public Health
- Delaware: Emergency Management Agency
- District of Columbia: Government of The District of Columbia
- Florida: Department of Health & U.S. Department of Health & Human Services
- Georgia: Department of Public Health
- Guam: Department of Public Health and Social Services
- Hawaii: Department of Health
- Idaho: State Government
- Illinois: Department of Public Health
- Indiana: Department of Health
- Iowa: State Government
- Kansas: Department Of Health And Environment
- Kentucky: Department of Public Health
- Louisiana: Department of Health
- Maine: Department of Health and Human Services
- Maryland: Department of Health
- Massachusetts: Department of Public Health
- Michigan: Michigan.gov
- Minnesota: Department of Health
- Mississippi: Department of Health
- Missouri: Department of Health
- Montana: Department of Public Health and Human Services
- Nebraska
- Nevada: Department of Health and Human Services
- New Hampshire: Department of Health and Human Services
- New Jersey: Department of Health
- New Mexico: Department of Health
- New York: State Department of Health
- North Carolina: Department of Health and Human
- North Dakota: Department of Health
- Northern Mariana Islands: Northern Mariana Islands Commonwealth Dept of Public Health
- Ohio: Department of Health
- Oklahoma: Department of Health
- Oregon: Health Authority
- Pennsylvania: Department of Health
- Puerto Rico: Departamento de Salud
- Rhode Island: Department of Health
- South Carolina: Department of Health and Environmental Control
- South Dakota: Department of Health
- Tennessee: Department of Health
- Texas: Department of State Health Services
- Amarillo County
- Brazoria County
- Brazos County
- Cameron County
- Collin County
- Corpus Christi
- Denton County
- Note: The dashboard includes cases identified via at-home antigen tests in the case total. We exlcude these cases from our reported total.
- Ector County
- City of El Paso
- Fayette County
- Fort Bend County
- Galveston County Health District
- Harris County
- Hays County
- Hidalgo County
- Laredo
- Midland County
- Mount Pleasant
- Montgomery County
- Potter County
We are aware that the totals reported on our dashboard do not match the headline numbers on the dashboard frontend. We can confirm that our numbers match the dashboard backend and the totals within the graphs on the site. We do not know why there is a discrepancy and have reached out to the county for further information.
- San Angelo 1
- San Angelo 2
- San Antonio
- Tarrant County
- Travis County
- Williamson County
- Utah: Department of Health
- Vermont: Department of Health
- Virgin Islands: Department of Health and COVID-19 Report
- Virginia: Department of Health
- Washington: Department of Health
- West Virginia: Department of Health & Human Resources
- Wisconsin: Department of Health Services (https://data.dhsgis.wi.gov/datasets/wi-dhs::covid-19-data-by-county-v2/about)
- Wyoming: Department of Health
-
Non-US data sources at the country/region (Admin0) or state/province (Admin1) level:
- Albania:
- National Agency for Information Society: https://coronavirus.al/statistika/
- Argentina:
- Ministry of Health: https://www.argentina.gob.ar/salud/coronavirus-COVID-19/sala-situacion
- Australia:
- Government Department of Health: https://www.health.gov.au/news/coronavirus-update-at-a-glance
- COVID Live: https://www.covidlive.com.au/
- Azerbaijan:
- Azerbaijan Operational Headquarters under the Cabinet of Ministers: https://koronavirusinfo.az/az
- Belarus:
- Ministry of Health: https://stopcovid.belta.by/
- Belgium:
- Brazil:
- Ministry of Health: https://covid.saude.gov.br/
- Federal University of Viçosa - Brazil: https://github.com/wcota/covid19br (Data described in DOI: 10.1590/SciELOPreprints.362)
- Burma (Myanmar):
- Myanmar Ministry of Health and Sports: https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8
- Canada:
- Government of Alberta: https://www.alberta.ca/covid-19-alberta-data.aspx
- Government of British Columbia Centre for Disease Control: https://experience.arcgis.com/experience/a6f23959a8b14bfa989e3cda29297ded
- Government of Canada: https://www.canada.ca/en/public-health/services/diseases/coronavirus.html
- Government of Manitoba: https://www.gov.mb.ca/covid19/updates/cases.html
- Government of New Brunswick: https://experience.arcgis.com/experience/8eeb9a2052d641c996dba5de8f25a8aa
- Government of Northwest Territories: https://www.gov.nt.ca/covid-19/
- Government of Ontario: https://covid-19.ontario.ca/data
- Ottawa Public Health: https://www.ottawapublichealth.ca/en/reports-research-and-statistics/daily-covid19-dashboard.aspx
- Toronto Public Health: https://www.toronto.ca/home/covid-19/covid-19-latest-city-of-toronto-news/covid-19-status-of-cases-in-toronto/
- Region of Peel: https://peelregion.ca/coronavirus/case-status/
- Region of Halton: https://www.halton.ca/For-Residents/Immunizations-Preventable-Disease/Diseases-Infections/New-Coronavirus
- Government of Prince Edward Island: https://www.princeedwardisland.ca/en/information/health-and-wellness/pei-covid-19-case-data
- Government of Quebec: https://www.quebec.ca/en/health/health-issues/a-z/2019-coronavirus/situation-coronavirus-in-quebec/
- Nunavut Department of Health: https://www.gov.nu.ca/health/information/covid-19-novel-coronavirus
- Chile:
- Ministry of Health: https://www.minsal.cl/nuevo-coronavirus-2019-ncov/casos-confirmados-en-chile-covid-19/
- Ministry of Communications: https://www.gob.cl/coronavirus/cifrasoficiales/
- China:
- qq.com: https://news.qq.com/zt2020/page/feiyan.htm#/
National Health Commission of the Peopleâs Republic of China (NHC): http://www.nhc.gov.cn/xcs/yqtb/list_gzbd.shtmlChina CDC (CCDC): http://weekly.chinacdc.cn/news/TrackingtheEpidemic.htm
- Colombia:
- National Institute of Health: http://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx
- Czech Republic (Czechia):
- National Health Information System, Regional Hygiene Stations, Ministry of Health of the Czech Republic: https://onemocneni-aktualne.mzcr.cz/covid-19
- Denmark:
- Statens Serum Institute: https://experience.arcgis.com/experience/aa41b29149f24e20a4007a0c4e13db1d
- Ecuador:
- Ministry of Public Health: https://www.salud.gob.ec/actualizacion-de-casos-de-coronavirus-en-ecuador/
- El Salvador:
- Government of El Salvador: https://covid19.gob.sv/
- Finland:
- THL/National Infectious Disease Register: https://experience.arcgis.com/experience/92e9bb33fac744c9a084381fc35aa3c7
- France:
- French Ministry of Solidarity and Health and Public Health Dashboard: https://dashboard.covid19.data.gouv.fr/ (retired)
- French Ministry of Solidarity and Health and Public Health Data: https://www.data.gouv.fr/en/datasets/donnees-relatives-a-lepidemie-de-covid-19-en-france-vue-densemble/ (stopped on May 17, 2022)
- French Ministry of Solidarity and Health and Public Health Data: https://www.data.gouv.fr/fr/datasets/synthese-des-indicateurs-de-suivi-de-lepidemie-covid-19/
- OpenCOVID19: https://github.com/opencovid19-fr (retired)
- Georgia:
- Government of Georgia Ministry of Health: https://stopcov.ge/en
- Germany:
- Berliner Morgenpost: https://interaktiv.morgenpost.de/corona-virus-karte-infektionen-deutschland-weltweit/ (retired March 31, 2022)
- Robert Koch Institute: https://www.rki.de/EN/Content/infections/epidemiology/outbreaks/COVID-19/COVID19.html
- Greece:
- National Public Health Organization: https://covid19.gov.gr/covid19-live-analytics
- Guatemala:
- Minesterio de Salud Publica Y Asistencia Social: https://tablerocovid.mspas.gob.gt/
- Hong Kong SAR:
- The Government of The Hong Kong Special Administrative Region Website: https://www.chp.gov.hk/en/features/102465.html
- The Government of The Hong Kong Special Administrative Region Dashboard: https://chp-dashboard.geodata.gov.hk/covid-19/en.html
- Hungary:
Government of Hungary: https://koronavirus.gov.hu/Discontinued 01/03/2023
- Iceland:
- Directorate of Health and Department of Civil Protection and Emergency Management: https://www.covid.is/data
- India:
- Government of India: https://www.mygov.in/covid-19
- Indonesia:
- National Board for Disaster Management: https://covid19.go.id/peta-sebaran
- Ireland:
- Government of Ireland: https://covid19ireland-geohive.hub.arcgis.com/
- Israel:
- Ministry of Health Website: https://govextra.gov.il/ministry-of-health/corona/corona-virus/
- Ministry of Health Dashboard: https://datadashboard.health.gov.il/COVID-19/general
- Italy:
- Civil Protection Department: https://github.com/pcm-dpc/COVID-19/tree/master/
- Ministry of Health: http://www.salute.gov.it/nuovocoronavirus
- Japan:
- Jordan:
- Ministry of Health: https://corona.moh.gov.jo/en
- Kazakhstan:
- Kazinform: https://www.coronavirus2020.kz/
- Kosovo:
- National Institute of Health of Kosovo Dashboard: https://corona-ks.info/?lang=en
- National Institute of Health of Kosovo JSON: https://raw.githubusercontent.com/bgeVam/Kosovo-Coronatracker-Data/master/data.json
- National Institute of Health of Kosovo Data Studio Dashboard: https://datastudio.google.com/embed/reporting/2e546d77-8f7b-4c35-8502-38533aa0e9e8/page/MT0qB
- Lebanon
- Lebanese Ministry Of Information: https://corona.ministryinfo.gov.lb/
- Lithuania:
- Government of Lithuania: https://experience.arcgis.com/experience/cab84dcfe0464c2a8050a78f817924ca
- Luxembourg:
- Government of Luxembourg: https://data.public.lu/fr/datasets/covid-19-rapports-journaliers/#_
- Macau SAR:
- Health Services of the Government of the Macau Special Administrative Region: https://www.ssm.gov.mo/portal/
- Malaysia
- Ministry of Health Website: https://covid-19.moh.gov.my/
- Ministry of Health Dashboard: https://covidnow.moh.gov.my/bm/cases
- Official data on the COVID-19 epidemic in Malaysia. Powered by CPRC, CPRC Hospital System, MKAK, and MySejahtera: https://github.com/MoH-Malaysia/covid19-public
- Mexico:
- Government of Mexico: https://datos.covid-19.conacyt.mx/#DOView
- Monaco:
- Gouvernement Princier Principaute de Monaco: https://www.gouv.mc/Action-Gouvernementale/Coronavirus-Covid-19/Actualites
- Netherlands:
- National Institute for Health and Environment: https://experience.arcgis.com/experience/ea064047519040469acb8da05c0f100d
- New Zealand:
- Ministry of Health: https://www.health.govt.nz/our-work/diseases-and-conditions/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases
- Government of Cook Islands: https://covid19.gov.ck/
- Palau:
- Ministry of Health & Human Services: http://www.palauhealth.org/2019nCoV_SitRep/MOH-COVID-19%20Situation%20Report.pdf
- Paraguay:
- Ministerio de Salud Publica Y Bienestar Social: https://www.mspbs.gov.py/reporte-covid19.html
- Pakistan:
- Government of Pakistan: http://covid.gov.pk/stats/pakistan
- Peru:
- Ministry of Health Dashboard: https://covid19.minsa.gob.pe/sala_situacional.asp
- Ministry of Health Press Releases: https://www.gob.pe/busquedas?categoria[]=6-salud&contenido[]=noticias&institucion[]=minsa&sheet=1&sort_by=recent&tipo_noticia[]=3-comunicado
- Philippines:
- Republic of Philippines Department of Health: https://doh.gov.ph/covid19tracker
- Poland:
- Service of the Republic of Poland: https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2
- Portugal:
- General Directorate of Health: https://esriportugal.maps.arcgis.com/apps/dashboards/acf023da9a0b4f9dbb2332c13f635829 (expired on March 13, 2022. Transferred to WHO.)
- Romania:
- Government of Romania: https://datelazi.ro/
- Russia:
- Government of The Russian Federation: https://xn--80aesfpebagmfblc0a.xn--p1ai/information/
- Saudi Arabia:
- Saudi Arabia Ministry of Health: https://covid19.moh.gov.sa/
- Serbia:
- Ministry of Health of the Republic of Serbia: https://covid19.rs/homepage-english/
- Singapore:
- Singapore Ministry of Health: https://www.moh.gov.sg/covid-19
- Slovakia:
- Ministry of Investment, Regional Development and Information: https://korona.gov.sk/koronavirus-na-slovensku-v-cislach/#covid-aut-nasledujuci-pondelok
- Slovenia:
- Sledilnik: https://covid-19.sledilnik.org/en/stats
- South Africa:
- South Africa Department of Health: https://sacoronavirus.co.za/
- South Korea:
- Ministry of Health and Welfare: http://ncov.mohw.go.kr/
- Spain:
- Sweden:
- The Swedish Public Health Agency: https://experience.arcgis.com/experience/09f821667ce64bf7be6f9f87457ed9aa
- Switzerland:
- Federal Office Of Public Health: https://www.bag.admin.ch/bag/en/home/krankheiten/ausbrueche-epidemien-pandemien/aktuelle-ausbrueche-epidemien/novel-cov/situation-schweiz-und-international.html
- Open Government Data Reported By The Swiss Cantons: https://github.com/openZH/covid_19
- Taiwan*:
- Thailand:
- Ministry of Public Health, Department of Disease Control Dashboard: https://ddc.moph.go.th/viralpneumonia/eng/index.php
- Ministry of Public Health, Department of Disease Control Situational Reports: https://covid19.ddc.moph.go.th/en
- Turkey:
Republic of Turkey Ministry of Health: https://covid19.saglik.gov.tr/TR-66935/genel-koronavirus-tablosu.htmlDigital Transformation Office of The Presidency of The Republic of Turkey: https://corona.cbddo.gov.tr/Home/GetLastDayDifference
- Ukraine:
- Office of the National Security and Defense Council of Ukraine: https://covid19.rnbo.gov.ua/
- United Arab Emirates:
- The Supreme Council For National Security, National Emergency Crisis and Disasters Management Authority: https://covid19.ncema.gov.ae/en
- United Kingdom
- Government of the United Kingdom: https://coronavirus.data.gov.uk/#category=nations&map=rate
- Scottish Government: https://www.gov.scot/publications/coronavirus-covid-19-trends-in-daily-data/
- Albania:
Embed our dashboard into your webpage:
<style>.embed-container {position: relative; padding-bottom: 80%; height: 0; max-width: 100%;} .embed-container iframe, .embed-container object, .embed-container iframe{position: absolute; top: 0; left: 0; width: 100%; height: 100%;} small{position: absolute; z-index: 40; bottom: 0; margin-bottom: -15px;}</style><div class="embed-container"><iframe width="500" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" title="COVID-19" src="https://www.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6"></iframe></div>
Acknowledgements: We are grateful to the following organizations for supporting our Centerâs COVID-19 mapping and modeling efforts: Financial Support: Johns Hopkins University, National Science Foundation (NSF), Bloomberg Philanthropies, Stavros Niarchos Foundation; Resource support: AWS, Slack, Github; Technical support: Johns Hopkins Applied Physics Lab (APL), Esri Living Atlas team
Additional Information about the Visual Dashboard: https://systems.jhu.edu/research/public-health/ncov/
Contact Us:
-
Email: jhusystems@gmail.com
Terms of Use:
-
This data set is licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0) by the Johns Hopkins University on behalf of its Center for Systems Science in Engineering. Copyright Johns Hopkins University 2020.
-
Attribute the data as the "COVID-19 Data Repository by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University" or "JHU CSSE COVID-19 Data" for short, and the url: https://github.com/CSSEGISandData/COVID-19.
-
For publications that use the data, please cite the following publication: "Dong E, Du H, Gardner L. An interactive web-based dashboard to track COVID-19 in real time. Lancet Inf Dis. 20(5):533-534. doi: 10.1016/S1473-3099(20)30120-1"
Top Related Projects
Data on COVID-19 (coronavirus) cases, deaths, hospitalizations, tests • All countries • Updated daily by Our World in Data
COVID-19 App
Coronavirus tracker app for iOS & macOS with maps & charts
Tracking the impact of COVID-19 in India
🦠 A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the 🔥 FastAPI framework. Supports multiple sources!
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot