The RKI’s reported data for date=2021-03-02 × pubDate=2021-03-03 is incorrect for the state of Mecklenburg-Vorpommern. Specifically, the firstDosesPercent is 1.33520883958219 where it was 5.037254265492141 the day before, and the secondDosesPercent is 0.8047925598910954 when it was 3.105579247552138 before. As a result, https://mathiasbynens.github.io/covid-19-vaccinations-germany/#percent currently looks like this:
Luckily, we can compute the correct value ourselves, based on the reported firstDosesCumulative=83959 and the population-per-state metrics RKI is using, this boils down to firstDosesPercent=5.220882785. Similarly, secondDosesCumulative=50606 corresponds to secondDosesPercent=3.146869236.
I’ve reported this to the RKI. If they don’t publish an updated version today, I’ll manually correct the CSV data tomorrow.
It might be easier for the RKI to use a VLOOKUP instead of manually computing and entering these percentages for each state every day…
The RKI’s reported data for
date=2021-03-02 × pubDate=2021-03-03
is incorrect for the state of Mecklenburg-Vorpommern. Specifically, thefirstDosesPercent
is1.33520883958219
where it was5.037254265492141
the day before, and thesecondDosesPercent
is0.8047925598910954
when it was3.105579247552138
before. As a result, https://mathiasbynens.github.io/covid-19-vaccinations-germany/#percent currently looks like this:Luckily, we can compute the correct value ourselves, based on the reported
firstDosesCumulative=83959
and the population-per-state metrics RKI is using, this boils down tofirstDosesPercent=5.220882785
. Similarly,secondDosesCumulative=50606
corresponds tosecondDosesPercent=3.146869236
.I’ve reported this to the RKI. If they don’t publish an updated version today, I’ll manually correct the CSV data tomorrow.
It might be easier for the RKI to use a
VLOOKUP
instead of manually computing and entering these percentages for each state every day…