diff --git a/.gitignore b/.gitignore index 2634a41..d83c29d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +frappe-charts.esm.js tmp node_modules package-lock.json diff --git a/build-chart.js b/build-chart.js index afeb6ba..2014f17 100644 --- a/build-chart.js +++ b/build-chart.js @@ -53,15 +53,16 @@ let maxCount = 0; let oldestDate = '9001-12-31'; let latestDate = '1970-01-01'; let latestPubDate = '1970-01-01'; -for (const {date, pubDate, state, onlyPartiallyVaccinatedCumulative, onlyPartiallyVaccinatedPercent, atLeastPartiallyVaccinatedCumulative, atLeastPartiallyVaccinatedPercent, fullyVaccinatedCumulative, fullyVaccinatedPercent, totalDosesCumulative, initialDosesCumulative, finalDosesCumulative, initialDosesPercent, finalDosesPercent, initialDosesCumulativeBioNTech, finalDosesCumulativeBioNTech, initialDosesCumulativeModerna, finalDosesCumulativeModerna, initialDosesCumulativeAstraZeneca, finalDosesCumulativeAstraZeneca, finalDosesCumulativeJohnsonAndJohnson, onlyPartiallyVaccinatedCumulativeBioNTech, onlyPartiallyVaccinatedCumulativeModerna, onlyPartiallyVaccinatedCumulativeAstraZeneca, fullyVaccinatedCumulativeBioNTech, fullyVaccinatedCumulativeModerna, fullyVaccinatedCumulativeAstraZeneca, fullyVaccinatedCumulativeJohnsonAndJohnson} of records) { +for (const {date, pubDate, state, onlyPartiallyVaccinatedCumulative, onlyPartiallyVaccinatedPercent, atLeastPartiallyVaccinatedCumulative, atLeastPartiallyVaccinatedPercent, fullyVaccinatedCumulative, fullyVaccinatedPercent, totalDosesCumulative, initialDosesCumulative, finalDosesCumulative, initialDosesPercent, finalDosesPercent, initialDosesCumulativeBioNTech, finalDosesCumulativeBioNTech, initialDosesCumulativeModerna, finalDosesCumulativeModerna, initialDosesCumulativeAstraZeneca, finalDosesCumulativeAstraZeneca, finalDosesCumulativeJohnsonAndJohnson, boosterDosesCumulative, boosterDosesCumulativeBioNTech, boosterDosesCumulativeModerna, boosterDosesCumulativeJohnsonAndJohnson, onlyPartiallyVaccinatedCumulativeBioNTech, onlyPartiallyVaccinatedCumulativeModerna, onlyPartiallyVaccinatedCumulativeAstraZeneca, fullyVaccinatedCumulativeBioNTech, fullyVaccinatedCumulativeModerna, fullyVaccinatedCumulativeAstraZeneca, fullyVaccinatedCumulativeJohnsonAndJohnson} of records) { if (state !== BUNDESWEHR) states.add(state); const countInitialDoses = Number(initialDosesCumulative); const countFinalDoses = Number(finalDosesCumulative); + const countBoosterDoses = Number(boosterDosesCumulative); const countTotal = Number(totalDosesCumulative); - const countBioNTech = Number(initialDosesCumulativeBioNTech) + Number(finalDosesCumulativeBioNTech); - const countModerna = Number(initialDosesCumulativeModerna) + Number(finalDosesCumulativeModerna); + const countBioNTech = Number(initialDosesCumulativeBioNTech) + Number(finalDosesCumulativeBioNTech) + Number(boosterDosesCumulativeBioNTech); + const countModerna = Number(initialDosesCumulativeModerna) + Number(finalDosesCumulativeModerna) + Number(boosterDosesCumulativeModerna); const countAstraZeneca = Number(initialDosesCumulativeAstraZeneca) + Number(finalDosesCumulativeAstraZeneca); - const countJohnsonAndJohnson = Number(finalDosesCumulativeJohnsonAndJohnson); + const countJohnsonAndJohnson = Number(finalDosesCumulativeJohnsonAndJohnson) + + Number(boosterDosesCumulativeJohnsonAndJohnson); if (countTotal > maxCount) { maxCount = countTotal; } @@ -83,6 +84,7 @@ for (const {date, pubDate, state, onlyPartiallyVaccinatedCumulative, onlyPartial cumulativeTotal: countTotal, cumulativeInitial: countInitialDoses, cumulativeFinal: countFinalDoses, + cumulativeBooster: countBoosterDoses, cumulativeTotalBioNTech: countBioNTech, cumulativeTotalModerna: countModerna, cumulativeTotalAstraZeneca: countAstraZeneca, @@ -102,6 +104,7 @@ for (const {date, pubDate, state, onlyPartiallyVaccinatedCumulative, onlyPartial fullyVaccinatedCumulativeModerna: Number(fullyVaccinatedCumulativeModerna), fullyVaccinatedCumulativeAstraZeneca: Number(fullyVaccinatedCumulativeAstraZeneca), fullyVaccinatedCumulativeJohnsonAndJohnson: Number(fullyVaccinatedCumulativeJohnsonAndJohnson), + }); } @@ -781,12 +784,14 @@ function generateStateData(desiredState) { const countsTotal = []; const countsInitialDose = []; const countsFinalDose = []; + const countsBoosterDose = []; const countsAvailable = []; for (const [date, entry] of sortedMap) { const data = entry.get(desiredState); countsTotal.push(data.cumulativeTotal); countsInitialDose.push(data.cumulativeInitial); countsFinalDose.push(data.cumulativeFinal); + countsBoosterDose.push(data.cumulativeBooster); const availableDoses = cumulativeDeliveryMap.get(date).get(desiredState); countsAvailable.push(availableDoses); } @@ -811,6 +816,11 @@ function generateStateData(desiredState) { chartType: 'line', values: countsFinalDose, }, + { + name: 'Booster doses', + chartType: 'line', + values: countsBoosterDose, + }, ); const data = { diff --git a/index.html b/index.html index c5251c9..e111553 100644 --- a/index.html +++ b/index.html @@ -1 +1 @@ -
Across all of Germany, 67.85% of inhabitants (56,426,411 out of 83,166,711 people) are fully vaccinated. 2.50% (2,080,844 people) are partially vaccinated but still need a second shot. Overall, 70.35% (58,507,255 people) received at least one vaccination. A total of 116,764,363 doses have been administered so far — that’s 94.88% of the 123,069,230 total doses that have been delivered to Germany as of 2021-11-09.
Note: For all charts on this page, “initial dose” refers to any first dose of a two-dose vaccine (i.e. Pfizer/BioNTech, Moderna, or Oxford/AstraZeneca) only. “Final dose” refers to any dose that completes vaccination, i.e. either a dose of Johnson & Johnson, or a second dose of a two-dose vaccine (i.e. Pfizer/BioNTech, Moderna, or Oxford/AstraZeneca).
The current vaccination rate (7-day average) is 316,053 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: This does not equal the percentage of inhabitants that received a dose, since some vaccines require two doses.
Note: Based on the latest available data, at least one state has administered more than the available amount of doses, which is impossible. This usually means the delivery data is outdated (i.e. the vaccination data is more up-to-date than the delivery data). As soon as up-to-date delivery data becomes available, this page automatically gets updated.
Across all of Germany, 67.85% of inhabitants (56,426,411 out of 83,166,711 people) are fully vaccinated. 2.50% (2,080,844 people) are partially vaccinated but still need a second shot. Overall, 70.35% (58,507,255 people) received at least one vaccination.
76.05% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (93,595,530 out of 123,069,230 doses) were Pfizer/BioNTech doses. 73.43% of all administered vaccine doses (85,735,252 out of 116,764,363 doses) were Pfizer/BioNTech doses. A total of 85,735,252 Pfizer/BioNTech doses have been administered so far — that’s 91.60% of the 93,595,530 total Pfizer/BioNTech doses that have been delivered to Germany as of 2021-11-09.
78.59% of all fully vaccinated people in Germany (44,346,128 out of 56,426,411 people) received Pfizer/BioNTech doses.
8.40% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (10,335,130 out of 123,069,230 doses) were Moderna doses. 8.35% of all administered vaccine doses (9,747,011 out of 116,764,363 doses) were Moderna doses. A total of 9,747,011 Moderna doses have been administered so far — that’s 94.31% of the 10,335,130 total Moderna doses that have been delivered to Germany as of 2021-11-09.
9.30% of all fully vaccinated people in Germany (5,248,077 out of 56,426,411 people) received Moderna doses.
11.73% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (14,437,610 out of 123,069,230 doses) were Oxford/AstraZeneca doses. 10.89% of all administered vaccine doses (12,713,371 out of 116,764,363 doses) were Oxford/AstraZeneca doses. A total of 12,713,371 Oxford/AstraZeneca doses have been administered so far — that’s 88.06% of the 14,437,610 total Oxford/AstraZeneca doses that have been delivered to Germany as of 2021-11-09.
6.14% of all fully vaccinated people in Germany (3,463,190 out of 56,426,411 people) received Oxford/AstraZeneca doses.
3.82% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (4,700,960 out of 123,069,230 doses) were Johnson & Johnson doses. 2.89% of all administered vaccine doses (3,369,016 out of 116,764,363 doses) were Johnson & Johnson doses. A total of 3,369,016 Johnson & Johnson doses have been administered so far — that’s 71.67% of the 4,700,960 total Johnson & Johnson doses that have been delivered to Germany as of 2021-11-09.
5.97% of all fully vaccinated people in Germany (3,369,016 out of 56,426,411 people) received Johnson & Johnson doses.
In Baden-Württemberg, 65.96% of inhabitants (7,321,819 out of 11,100,394 people) are fully vaccinated. 1.61% (178,432 people) are partially vaccinated but still need a second shot. Overall, 67.57% (7,500,251 people) received at least one vaccination. A total of 14,979,352 doses have been administered so far — that’s 101.83% of the 14,710,096 total doses that have been delivered to Baden-Württemberg. The current vaccination rate (7-day average) is 39,119 doses per day, which works out to 0.35% of the population getting vaccinated every day.
Note: The drops on , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Bayern, 65.98% of inhabitants (8,660,120 out of 13,124,737 people) are fully vaccinated. 1.83% (240,569 people) are partially vaccinated but still need a second shot. Overall, 67.82% (8,900,689 people) received at least one vaccination. A total of 17,911,183 doses have been administered so far — that’s 97.36% of the 18,396,460 total doses that have been delivered to Bayern. The current vaccination rate (7-day average) is 62,012 doses per day, which works out to 0.47% of the population getting vaccinated every day.
Note: The drops on , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Berlin, 68.37% of inhabitants (2,509,010 out of 3,669,491 people) are fully vaccinated. 2.30% (84,362 people) are partially vaccinated but still need a second shot. Overall, 70.67% (2,593,372 people) received at least one vaccination. A total of 5,316,716 doses have been administered so far — that’s 94.76% of the 5,610,886 total doses that have been delivered to Berlin. The current vaccination rate (7-day average) is 19,348 doses per day, which works out to 0.53% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Brandenburg, 61.77% of inhabitants (1,557,686 out of 2,521,893 people) are fully vaccinated. 2.16% (54,353 people) are partially vaccinated but still need a second shot. Overall, 63.92% (1,612,039 people) received at least one vaccination. A total of 3,191,175 doses have been administered so far — that’s 95.75% of the 3,332,925 total doses that have been delivered to Brandenburg. The current vaccination rate (7-day average) is 9,035 doses per day, which works out to 0.36% of the population getting vaccinated every day.
Note: The drops on , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Bremen, 79.38% of inhabitants (540,743 out of 681,202 people) are fully vaccinated. 2.45% (16,708 people) are partially vaccinated but still need a second shot. Overall, 81.83% (557,451 people) received at least one vaccination. A total of 1,112,074 doses have been administered so far — that’s 107.67% of the 1,032,887 total doses that have been delivered to Bremen. The current vaccination rate (7-day average) is 2,906 doses per day, which works out to 0.43% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Hamburg, 73.58% of inhabitants (1,359,199 out of 1,847,253 people) are fully vaccinated. 1.96% (36,119 people) are partially vaccinated but still need a second shot. Overall, 75.53% (1,395,318 people) received at least one vaccination. A total of 2,774,377 doses have been administered so far — that’s 100.32% of the 2,765,471 total doses that have been delivered to Hamburg. The current vaccination rate (7-day average) is 7,083 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Hessen, 67.03% of inhabitants (4,215,030 out of 6,288,080 people) are fully vaccinated. 3.20% (201,321 people) are partially vaccinated but still need a second shot. Overall, 70.23% (4,416,351 people) received at least one vaccination. A total of 8,756,544 doses have been administered so far — that’s 95.13% of the 9,205,229 total doses that have been delivered to Hessen. The current vaccination rate (7-day average) is 23,011 doses per day, which works out to 0.37% of the population getting vaccinated every day.
Note: The drops on , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Mecklenburg-Vorpommern, 66.34% of inhabitants (1,066,771 out of 1,608,138 people) are fully vaccinated. 1.91% (30,641 people) are partially vaccinated but still need a second shot. Overall, 68.24% (1,097,412 people) received at least one vaccination. A total of 2,194,961 doses have been administered so far — that’s 97.37% of the 2,254,219 total doses that have been delivered to Mecklenburg-Vorpommern. The current vaccination rate (7-day average) is 6,928 doses per day, which works out to 0.43% of the population getting vaccinated every day.
Note: The drops on , , , , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Niedersachsen, 69.81% of inhabitants (5,580,035 out of 7,993,608 people) are fully vaccinated. 2.92% (233,290 people) are partially vaccinated but still need a second shot. Overall, 72.72% (5,813,325 people) received at least one vaccination. A total of 11,472,921 doses have been administered so far — that’s 100.22% of the 11,448,184 total doses that have been delivered to Niedersachsen. The current vaccination rate (7-day average) is 32,177 doses per day, which works out to 0.40% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Nordrhein-Westfalen, 71.18% of inhabitants (12,774,034 out of 17,947,221 people) are fully vaccinated. 3.31% (594,071 people) are partially vaccinated but still need a second shot. Overall, 74.49% (13,368,105 people) received at least one vaccination. A total of 26,568,523 doses have been administered so far — that’s 101.31% of the 26,224,577 total doses that have been delivered to Nordrhein-Westfalen. The current vaccination rate (7-day average) is 67,737 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: The drops on , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Rheinland-Pfalz, 67.67% of inhabitants (2,770,546 out of 4,093,903 people) are fully vaccinated. 4.07% (166,448 people) are partially vaccinated but still need a second shot. Overall, 71.74% (2,936,994 people) received at least one vaccination. A total of 5,799,358 doses have been administered so far — that’s 103.28% of the 5,615,407 total doses that have been delivered to Rheinland-Pfalz. The current vaccination rate (7-day average) is 13,588 doses per day, which works out to 0.33% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Saarland, 74.08% of inhabitants (731,084 out of 986,887 people) are fully vaccinated. 2.21% (21,822 people) are partially vaccinated but still need a second shot. Overall, 76.29% (752,906 people) received at least one vaccination. A total of 1,508,624 doses have been administered so far — that’s 98.94% of the 1,524,817 total doses that have been delivered to Saarland. The current vaccination rate (7-day average) is 4,541 doses per day, which works out to 0.46% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Sachsen, 57.43% of inhabitants (2,338,331 out of 4,071,971 people) are fully vaccinated. 2.14% (87,066 people) are partially vaccinated but still need a second shot. Overall, 59.56% (2,425,397 people) received at least one vaccination. A total of 4,852,102 doses have been administered so far — that’s 95.97% of the 5,056,105 total doses that have been delivered to Sachsen. The current vaccination rate (7-day average) is 11,595 doses per day, which works out to 0.28% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Sachsen-Anhalt, 63.83% of inhabitants (1,400,973 out of 2,194,782 people) are fully vaccinated. 1.37% (30,144 people) are partially vaccinated but still need a second shot. Overall, 65.21% (1,431,117 people) received at least one vaccination. A total of 2,849,644 doses have been administered so far — that’s 97.06% of the 2,936,084 total doses that have been delivered to Sachsen-Anhalt. The current vaccination rate (7-day average) is 8,379 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: The drops on , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Schleswig-Holstein, 72.48% of inhabitants (2,104,787 out of 2,903,773 people) are fully vaccinated. 2.38% (69,026 people) are partially vaccinated but still need a second shot. Overall, 74.86% (2,173,813 people) received at least one vaccination. A total of 4,369,956 doses have been administered so far — that’s 101.54% of the 4,303,654 total doses that have been delivered to Schleswig-Holstein. The current vaccination rate (7-day average) is 9,976 doses per day, which works out to 0.34% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Thüringen, 61.39% of inhabitants (1,309,739 out of 2,133,378 people) are fully vaccinated. 1.35% (28,843 people) are partially vaccinated but still need a second shot. Overall, 62.74% (1,338,582 people) received at least one vaccination. A total of 2,730,923 doses have been administered so far — that’s 96.07% of the 2,842,664 total doses that have been delivered to Thüringen. The current vaccination rate (7-day average) is 9,876 doses per day, which works out to 0.46% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
Made by @mathias. View the raw data (CSV). \ No newline at end of file +
Across all of Germany, 67.85% of inhabitants (56,426,411 out of 83,166,711 people) are fully vaccinated. 2.50% (2,080,844 people) are partially vaccinated but still need a second shot. Overall, 70.35% (58,507,255 people) received at least one vaccination. A total of 116,764,363 doses have been administered so far — that’s 94.88% of the 123,069,230 total doses that have been delivered to Germany as of 2021-11-09.
Note: For all charts on this page, “initial dose” refers to any first dose of a two-dose vaccine (i.e. Pfizer/BioNTech, Moderna, or Oxford/AstraZeneca) only. “Final dose” refers to any dose that completes vaccination, i.e. either a dose of Johnson & Johnson, or a second dose of a two-dose vaccine (i.e. Pfizer/BioNTech, Moderna, or Oxford/AstraZeneca).
The current vaccination rate (7-day average) is 316,053 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: This does not equal the percentage of inhabitants that received a dose, since some vaccines require two doses.
Note: Based on the latest available data, at least one state has administered more than the available amount of doses, which is impossible. This usually means the delivery data is outdated (i.e. the vaccination data is more up-to-date than the delivery data). As soon as up-to-date delivery data becomes available, this page automatically gets updated.
Across all of Germany, 67.85% of inhabitants (56,426,411 out of 83,166,711 people) are fully vaccinated. 2.50% (2,080,844 people) are partially vaccinated but still need a second shot. Overall, 70.35% (58,507,255 people) received at least one vaccination.
76.05% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (93,595,530 out of 123,069,230 doses) were Pfizer/BioNTech doses. 77.71% of all administered vaccine doses (90,737,811 out of 116,764,363 doses) were Pfizer/BioNTech doses. A total of 90,737,811 Pfizer/BioNTech doses have been administered so far — that’s 96.95% of the 93,595,530 total Pfizer/BioNTech doses that have been delivered to Germany as of 2021-11-09.
78.59% of all fully vaccinated people in Germany (44,346,128 out of 56,426,411 people) received Pfizer/BioNTech doses.
8.40% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (10,335,130 out of 123,069,230 doses) were Moderna doses. 8.52% of all administered vaccine doses (9,942,772 out of 116,764,363 doses) were Moderna doses. A total of 9,942,772 Moderna doses have been administered so far — that’s 96.20% of the 10,335,130 total Moderna doses that have been delivered to Germany as of 2021-11-09.
9.30% of all fully vaccinated people in Germany (5,248,077 out of 56,426,411 people) received Moderna doses.
11.73% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (14,437,610 out of 123,069,230 doses) were Oxford/AstraZeneca doses. 10.89% of all administered vaccine doses (12,713,371 out of 116,764,363 doses) were Oxford/AstraZeneca doses. A total of 12,713,371 Oxford/AstraZeneca doses have been administered so far — that’s 88.06% of the 14,437,610 total Oxford/AstraZeneca doses that have been delivered to Germany as of 2021-11-09.
6.14% of all fully vaccinated people in Germany (3,463,190 out of 56,426,411 people) received Oxford/AstraZeneca doses.
3.82% of all COVID-19 vaccine doses that have been delivered to Germany as of 2021-11-09 (4,700,960 out of 123,069,230 doses) were Johnson & Johnson doses. 2.89% of all administered vaccine doses (3,370,169 out of 116,764,363 doses) were Johnson & Johnson doses. A total of 3,370,169 Johnson & Johnson doses have been administered so far — that’s 71.69% of the 4,700,960 total Johnson & Johnson doses that have been delivered to Germany as of 2021-11-09.
5.97% of all fully vaccinated people in Germany (3,369,016 out of 56,426,411 people) received Johnson & Johnson doses.
In Baden-Württemberg, 65.96% of inhabitants (7,321,819 out of 11,100,394 people) are fully vaccinated. 1.61% (178,432 people) are partially vaccinated but still need a second shot. Overall, 67.57% (7,500,251 people) received at least one vaccination. A total of 14,979,352 doses have been administered so far — that’s 101.83% of the 14,710,096 total doses that have been delivered to Baden-Württemberg. The current vaccination rate (7-day average) is 39,119 doses per day, which works out to 0.35% of the population getting vaccinated every day.
Note: The drops on , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Bayern, 65.98% of inhabitants (8,660,120 out of 13,124,737 people) are fully vaccinated. 1.83% (240,569 people) are partially vaccinated but still need a second shot. Overall, 67.82% (8,900,689 people) received at least one vaccination. A total of 17,911,183 doses have been administered so far — that’s 97.36% of the 18,396,460 total doses that have been delivered to Bayern. The current vaccination rate (7-day average) is 62,012 doses per day, which works out to 0.47% of the population getting vaccinated every day.
Note: The drops on , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Berlin, 68.37% of inhabitants (2,509,010 out of 3,669,491 people) are fully vaccinated. 2.30% (84,362 people) are partially vaccinated but still need a second shot. Overall, 70.67% (2,593,372 people) received at least one vaccination. A total of 5,316,716 doses have been administered so far — that’s 94.76% of the 5,610,886 total doses that have been delivered to Berlin. The current vaccination rate (7-day average) is 19,348 doses per day, which works out to 0.53% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Brandenburg, 61.77% of inhabitants (1,557,686 out of 2,521,893 people) are fully vaccinated. 2.16% (54,353 people) are partially vaccinated but still need a second shot. Overall, 63.92% (1,612,039 people) received at least one vaccination. A total of 3,191,175 doses have been administered so far — that’s 95.75% of the 3,332,925 total doses that have been delivered to Brandenburg. The current vaccination rate (7-day average) is 9,035 doses per day, which works out to 0.36% of the population getting vaccinated every day.
Note: The drops on , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Bremen, 79.38% of inhabitants (540,743 out of 681,202 people) are fully vaccinated. 2.45% (16,708 people) are partially vaccinated but still need a second shot. Overall, 81.83% (557,451 people) received at least one vaccination. A total of 1,112,074 doses have been administered so far — that’s 107.67% of the 1,032,887 total doses that have been delivered to Bremen. The current vaccination rate (7-day average) is 2,906 doses per day, which works out to 0.43% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Hamburg, 73.58% of inhabitants (1,359,199 out of 1,847,253 people) are fully vaccinated. 1.96% (36,119 people) are partially vaccinated but still need a second shot. Overall, 75.53% (1,395,318 people) received at least one vaccination. A total of 2,774,377 doses have been administered so far — that’s 100.32% of the 2,765,471 total doses that have been delivered to Hamburg. The current vaccination rate (7-day average) is 7,083 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Hessen, 67.03% of inhabitants (4,215,030 out of 6,288,080 people) are fully vaccinated. 3.20% (201,321 people) are partially vaccinated but still need a second shot. Overall, 70.23% (4,416,351 people) received at least one vaccination. A total of 8,756,544 doses have been administered so far — that’s 95.13% of the 9,205,229 total doses that have been delivered to Hessen. The current vaccination rate (7-day average) is 23,011 doses per day, which works out to 0.37% of the population getting vaccinated every day.
Note: The drops on , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Mecklenburg-Vorpommern, 66.34% of inhabitants (1,066,771 out of 1,608,138 people) are fully vaccinated. 1.91% (30,641 people) are partially vaccinated but still need a second shot. Overall, 68.24% (1,097,412 people) received at least one vaccination. A total of 2,194,961 doses have been administered so far — that’s 97.37% of the 2,254,219 total doses that have been delivered to Mecklenburg-Vorpommern. The current vaccination rate (7-day average) is 6,928 doses per day, which works out to 0.43% of the population getting vaccinated every day.
Note: The drops on , , , , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Niedersachsen, 69.81% of inhabitants (5,580,035 out of 7,993,608 people) are fully vaccinated. 2.92% (233,290 people) are partially vaccinated but still need a second shot. Overall, 72.72% (5,813,325 people) received at least one vaccination. A total of 11,472,921 doses have been administered so far — that’s 100.22% of the 11,448,184 total doses that have been delivered to Niedersachsen. The current vaccination rate (7-day average) is 32,177 doses per day, which works out to 0.40% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Nordrhein-Westfalen, 71.18% of inhabitants (12,774,034 out of 17,947,221 people) are fully vaccinated. 3.31% (594,071 people) are partially vaccinated but still need a second shot. Overall, 74.49% (13,368,105 people) received at least one vaccination. A total of 26,568,523 doses have been administered so far — that’s 101.31% of the 26,224,577 total doses that have been delivered to Nordrhein-Westfalen. The current vaccination rate (7-day average) is 67,737 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: The drops on , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Rheinland-Pfalz, 67.67% of inhabitants (2,770,546 out of 4,093,903 people) are fully vaccinated. 4.07% (166,448 people) are partially vaccinated but still need a second shot. Overall, 71.74% (2,936,994 people) received at least one vaccination. A total of 5,799,358 doses have been administered so far — that’s 103.28% of the 5,615,407 total doses that have been delivered to Rheinland-Pfalz. The current vaccination rate (7-day average) is 13,588 doses per day, which works out to 0.33% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Saarland, 74.08% of inhabitants (731,084 out of 986,887 people) are fully vaccinated. 2.21% (21,822 people) are partially vaccinated but still need a second shot. Overall, 76.29% (752,906 people) received at least one vaccination. A total of 1,508,624 doses have been administered so far — that’s 98.94% of the 1,524,817 total doses that have been delivered to Saarland. The current vaccination rate (7-day average) is 4,541 doses per day, which works out to 0.46% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Sachsen, 57.43% of inhabitants (2,338,331 out of 4,071,971 people) are fully vaccinated. 2.14% (87,066 people) are partially vaccinated but still need a second shot. Overall, 59.56% (2,425,397 people) received at least one vaccination. A total of 4,852,102 doses have been administered so far — that’s 95.97% of the 5,056,105 total doses that have been delivered to Sachsen. The current vaccination rate (7-day average) is 11,595 doses per day, which works out to 0.28% of the population getting vaccinated every day.
Note: The drops on , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Sachsen-Anhalt, 63.83% of inhabitants (1,400,973 out of 2,194,782 people) are fully vaccinated. 1.37% (30,144 people) are partially vaccinated but still need a second shot. Overall, 65.21% (1,431,117 people) received at least one vaccination. A total of 2,849,644 doses have been administered so far — that’s 97.06% of the 2,936,084 total doses that have been delivered to Sachsen-Anhalt. The current vaccination rate (7-day average) is 8,379 doses per day, which works out to 0.38% of the population getting vaccinated every day.
Note: The drops on , , , , and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Schleswig-Holstein, 72.48% of inhabitants (2,104,787 out of 2,903,773 people) are fully vaccinated. 2.38% (69,026 people) are partially vaccinated but still need a second shot. Overall, 74.86% (2,173,813 people) received at least one vaccination. A total of 4,369,956 doses have been administered so far — that’s 101.54% of the 4,303,654 total doses that have been delivered to Schleswig-Holstein. The current vaccination rate (7-day average) is 9,976 doses per day, which works out to 0.34% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
In Thüringen, 61.39% of inhabitants (1,309,739 out of 2,133,378 people) are fully vaccinated. 1.35% (28,843 people) are partially vaccinated but still need a second shot. Overall, 62.74% (1,338,582 people) received at least one vaccination. A total of 2,730,923 doses have been administered so far — that’s 96.07% of the 2,842,664 total doses that have been delivered to Thüringen. The current vaccination rate (7-day average) is 9,876 doses per day, which works out to 0.46% of the population getting vaccinated every day.
Note: The drops on and are not errors in our chart — it matches the data reported by the RKI, which either underreported these numbers, or overreported the numbers for the preceding days. 🤷
Made by @mathias. View the raw data (CSV). \ No newline at end of file diff --git a/templates/chart.template b/templates/chart.template index 493e8b6..116925b 100644 --- a/templates/chart.template +++ b/templates/chart.template @@ -41,6 +41,7 @@