rs-delve / covid19_datasets

Interfacing several COVID-19 related datasets
MIT License
45 stars 19 forks source link

missing England case data #28

Open bobby-he opened 3 years ago

bobby-he commented 3 years ago

Hi,

There seems to have been a change in the government England cases data at https://coronavirus.data.gov.uk/downloads/csv/coronavirus-cases_latest.csv which means only about ~130 English LTA areas have cases data as opposed to the normal ~350, which affects the output (shape) of

from covid19_datasets import UKCovid19Data uk_data = UKCovid19Data(england_area_type=UKCovid19Data.ENGLAND_LOWER_TIER_AUTHORITY) uk_cases = uk_data.get_cases_data()

e.g. the ("England", "Aylesbury Vale") row no longer appears.

Not sure if this is temporary or permanent change/what a viable fix is.

Cheers