From e9d7007f7564a61d4f89b3a5aca4e47f991c2a84 Mon Sep 17 00:00:00 2001 From: abulascruz Date: Tue, 8 Jun 2021 10:11:16 +0200 Subject: [PATCH 0001/1182] Generate summary statistics for the homepage. --- .github/workflows/scrape_times.yml | 27 ++ .gitignore | 1 + data/input/map.svg | 463 +++++++++++++++++++++++++++++ data/input/region-pop.csv | 22 ++ data/output/stats.json | 1 + generate_stats.py | 51 ++++ requirements.txt | 1 + 7 files changed, 566 insertions(+) create mode 100644 data/input/map.svg create mode 100644 data/input/region-pop.csv create mode 100644 data/output/stats.json create mode 100644 generate_stats.py diff --git a/.github/workflows/scrape_times.yml b/.github/workflows/scrape_times.yml index 92fbcbe3767..a9a8a632131 100644 --- a/.github/workflows/scrape_times.yml +++ b/.github/workflows/scrape_times.yml @@ -38,3 +38,30 @@ jobs: git add *.json git commit -am "Updating the times for Region ${{ matrix.region }}" git push + generate_stats: + name: Generate the stats + runs-on: ubuntu-latest + steps: + - name: Download the code + uses: actions/checkout@v2 + - name: Install Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Install the Python dependencies + run: pip3 install -r requirements.txt + - name: Generate the stats + run: python3 generate_stats.py + - name: Commit the data + uses: nick-invision/retry@v2 + with: + timeout_seconds: 10 + max_attempts: 5 + command: | + git config --global user.name 'Pierre Mesure (Github Actions)' + git config --global user.email 'pierre@mesu.re' + git config --global rebase.autoStash true + git pull --rebase + git add stats.json + git commit -am "Updating the stats" + git push diff --git a/.gitignore b/.gitignore index bee8a64b79a..f2397c33d20 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ __pycache__ +*.DS_STORE diff --git a/data/input/map.svg b/data/input/map.svg new file mode 100644 index 00000000000..5bdfb7eedc8 --- /dev/null +++ b/data/input/map.svg @@ -0,0 +1,463 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @e0 + + + + @e1 + + + + @e2 + + + + @e3 + + + + @e4 + + + + @e5 + + + + @e6 + + + + @e7 + + + + @e8 + + + + @e9 + + +@@@UPDATETAG@@@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/input/region-pop.csv b/data/input/region-pop.csv new file mode 100644 index 00000000000..c0e3d6acf7c --- /dev/null +++ b/data/input/region-pop.csv @@ -0,0 +1,22 @@ +dep;departmentPopulation +01;2391990 +03;388394 +04;299401 +05;467158 +06;365010 +07;202263 +08;246010 +09;60124 +10;159056 +12;1389336 +13;336748 +14;1734443 +17;282885 +18;305643 +19;277141 +20;287676 +21;287502 +22;244554 +23;131155 +24;273192 +25;249614 \ No newline at end of file diff --git a/data/output/stats.json b/data/output/stats.json new file mode 100644 index 00000000000..789f2b6ef01 --- /dev/null +++ b/data/output/stats.json @@ -0,0 +1 @@ +{"10": {"disponibles": 9, "total": 19, "creneaux": 264}, "20": {"disponibles": 5, "total": 8, "creneaux": 3415}, "09": {"disponibles": 0, "total": 0, "creneaux": 0}, "21": {"disponibles": 0, "total": 0, "creneaux": 0}, "13": {"disponibles": 0, "total": 0, "creneaux": 0}, "23": {"disponibles": 0, "total": 0, "creneaux": 0}, "06": {"disponibles": 14, "total": 52, "creneaux": 3003}, "08": {"disponibles": 0, "total": 30, "creneaux": 0}, "07": {"disponibles": 4, "total": 7, "creneaux": 1392}, "25": {"disponibles": 0, "total": 0, "creneaux": 0}, "12": {"disponibles": 18, "total": 39, "creneaux": 11883}, "01": {"disponibles": 0, "total": 0, "creneaux": 0}, "04": {"disponibles": 4, "total": 6, "creneaux": 6574}, "03": {"disponibles": 0, "total": 0, "creneaux": 0}, "17": {"disponibles": 0, "total": 0, "creneaux": 0}, "24": {"disponibles": 1, "total": 4, "creneaux": 214}, "22": {"disponibles": 5, "total": 19, "creneaux": 7716}, "19": {"disponibles": 0, "total": 0, "creneaux": 0}, "14": {"disponibles": 0, "total": 112, "creneaux": 0}, "18": {"disponibles": 3, "total": 5, "creneaux": 95}, "05": {"disponibles": 13, "total": 38, "creneaux": 2099}, "tout_departement": {"disponibles": 76, "total": 339, "creneaux": 36655}} \ No newline at end of file diff --git a/generate_stats.py b/generate_stats.py new file mode 100644 index 00000000000..b2107ee61e7 --- /dev/null +++ b/generate_stats.py @@ -0,0 +1,51 @@ +import json +import pandas as pd + +with open('regions.json') as regions_json: + regions = json.load(regions_json) + +output = {} +centre_count = 0 +supported_centre_count = 0 +dose_count = 0 + +for region in regions: + + with open(region['code'] + '.json') as region_json: + appointments = json.load(region_json) + + # Number of vaccination centres that have available vaccines + centre_count_by_region = len(appointments['centres_disponibles']) + centre_count += centre_count_by_region + + # Number of vaccine doses available + + df_appointments = pd.DataFrame.from_dict(appointments['centres_disponibles']) + if not df_appointments.empty: + dose_count_by_region = df_appointments['appointment_count'].sum() + dose_count += dose_count_by_region + else: + dose_count_by_region = 0 + + # Number of vaccination centres supported + df_all_centres = df_appointments.append(pd.DataFrame.from_dict(appointments['centres_indisponibles']), ignore_index=True) + if not df_all_centres.empty: + supported_centre_count_by_region = (~df_all_centres['appointment_by_phone_only']).sum() + supported_centre_count += supported_centre_count_by_region + else: + supported_centre_count_by_region = 0 + + output[region['code']] = { + 'disponibles': int(centre_count_by_region), + 'total': int(supported_centre_count_by_region), + 'creneaux': int(dose_count_by_region), + } + +output['tout_departement'] = { + 'disponibles': int(centre_count), + 'total': int(supported_centre_count), + 'creneaux': int(dose_count), +} + +with open('data/output/stats.json', 'w') as output_file: + json.dump(output, output_file) diff --git a/requirements.txt b/requirements.txt index a3d01701edc..778205860b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ beautifulsoup4==4.9.3 pytz==2021.1 brotlipy==0.7.0 python-dateutil==2.8.1 +pandas==1.2.4 From 169b03972dcddaa25463190e4fa9b3098b2dd892 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:13:29 +0000 Subject: [PATCH 0002/1182] Updating the times for Region 10 --- 10.json | 128 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/10.json b/10.json index 6ad7c6be387..b32adf5af85 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:58:25.124583+02:00", + "last_updated": "2021-06-08 10:13:29.352215+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-08 15:00:00", + "prochain_rdv": "2021-06-08 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-17 11:10:00", + "prochain_rdv": "2021-06-09 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 107, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-23 10:15:00", + "prochain_rdv": "2021-06-22 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 17, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-22 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 62, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,6 +199,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Olofströms vårdcentral, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", + "cp": "00000" + }, + "metadata": { + "address": "Rösjövägen 10", + "business_hours": null, + "phone_number": "0454-73 31 00" + }, + "prochain_rdv": "2021-06-24 08:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "578", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Ronneby vårdcentral", @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-07-03 09:20:00", + "prochain_rdv": "2021-07-03 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 43, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -254,6 +282,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": "2021-06-24 14:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -341,34 +397,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", - "cp": "00000" - }, - "metadata": { - "address": "Rösjövägen 10", - "business_hours": null, - "phone_number": "0454-73 31 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "578", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Olofströmskliniken, Olofström", @@ -536,34 +564,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 54 30" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "581", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ] } \ No newline at end of file From 2d5e6edefcbf8204e79013523beb1eee867b6709 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:14:16 +0000 Subject: [PATCH 0003/1182] Updating the times for Region 20 --- 20.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/20.json b/20.json index 81597640743..4c97c94e880 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:59:06.555068+02:00", + "last_updated": "2021-06-08 10:14:15.682953+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:20:00", + "prochain_rdv": "2021-07-07 11:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2768, + "appointment_count": 2774, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-07-09 11:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 33, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-07-05 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 150, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:10:00", + "prochain_rdv": "2021-07-01 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 19, From 324d41bb140e7d1ecb6ac25478840e121cbbdaa4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:14:47 +0000 Subject: [PATCH 0004/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 61a4e8ee3ce..5b36d440f67 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:59:28.426944+02:00", + "last_updated": "2021-06-08 10:14:46.775884+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 10e94c4ab3d70cd523b01bf0d695ec8ce199c152 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:15:14 +0000 Subject: [PATCH 0005/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index cacecacad67..462611d4db2 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:59:48.881049+02:00", + "last_updated": "2021-06-08 10:15:13.574657+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4f97e2e643ce3f60efd26322fe02e5065ec732d6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:15:46 +0000 Subject: [PATCH 0006/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index c034761a3cd..1dd7c20b7da 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:00:13.590771+02:00", + "last_updated": "2021-06-08 10:15:46.152880+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 653a08bf8a80418423ee368e918d9b9a17103bf9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:16:15 +0000 Subject: [PATCH 0007/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 3a5ead7c8e1..32ca063d048 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:00:36.271341+02:00", + "last_updated": "2021-06-08 10:16:14.588075+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1f62097586c1d1c0163282826ef49fa51e280db0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:19:40 +0000 Subject: [PATCH 0008/1182] Updating the times for Region 06 --- 06.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/06.json b/06.json index 47f0cf7a1ba..ef35ac0daa9 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:03:57.537223+02:00", + "last_updated": "2021-06-08 10:19:39.607398+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:15:00", + "prochain_rdv": "2021-06-23 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 111, + "appointment_count": 108, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-16 13:50:00", + "prochain_rdv": "2021-06-22 18:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 140, + "appointment_count": 128, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-08 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 59, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-23 11:06:00", + "prochain_rdv": "2021-06-24 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 88, + "appointment_count": 80, "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:12:00", + "prochain_rdv": "2021-06-10 09:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 72, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 19:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1682, + "appointment_count": 1674, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-10 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 342, + "appointment_count": 339, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-30 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 62, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-22 11:55:00", + "prochain_rdv": "2021-06-10 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 108, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-17 09:50:00", + "prochain_rdv": "2021-06-29 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 118, + "appointment_count": 112, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, From df996a440267a46a762d65140e84bdd00dc1d5e1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:20:39 +0000 Subject: [PATCH 0009/1182] Updating the times for Region 08 --- 08.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08.json b/08.json index 4c57ceb1dcd..53f24d7e0fd 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:04:47.787165+02:00", + "last_updated": "2021-06-08 10:20:38.627897+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From a0601d3fcefe6ed3768bdae03812094e94f7c3f7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:21:27 +0000 Subject: [PATCH 0010/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index fb57b929836..a432fd59584 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:03:45.305426+02:00", + "last_updated": "2021-06-08 10:21:26.651487+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-15 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 6, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-08 11:00:00", + "prochain_rdv": "2021-06-15 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 64, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:50:00", + "prochain_rdv": "2021-06-15 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 46, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-08 10:56:00", + "prochain_rdv": "2021-06-08 16:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1274, + "appointment_count": 1246, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 83a63db79c3bf900959eacc8056af64c41a6afde Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:21:57 +0000 Subject: [PATCH 0011/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 0e755ac2663..16a3c37bd67 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:04:09.449581+02:00", + "last_updated": "2021-06-08 10:21:57.006916+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From f7fd125341819b290a7155ea7f709e2bde20c998 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:22:27 +0000 Subject: [PATCH 0012/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index c489f64eeb0..a7b4efaff69 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:04:32.588390+02:00", + "last_updated": "2021-06-08 10:22:26.755818+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From cab905946a641d2d48b9bf4b859842d7292c84fa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:23:45 +0000 Subject: [PATCH 0013/1182] Updating the times for Region 04 --- 04.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/04.json b/04.json index c9af6cf202b..9825371044d 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:05:47.215335+02:00", + "last_updated": "2021-06-08 10:23:44.857006+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 08:45:00", + "prochain_rdv": "2021-06-10 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 75, + "appointment_count": 66, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 14:25:00", + "prochain_rdv": "2021-06-22 14:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 43, + "appointment_count": 39, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-07-06 18:45:00", + "prochain_rdv": "2021-07-06 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 848, + "appointment_count": 814, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 10:20:00", + "prochain_rdv": "2021-06-17 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5608, + "appointment_count": 5592, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 6ead0ef66ac12a0ac8be52b7cd6d7f6780cf28cc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:24:19 +0000 Subject: [PATCH 0014/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 832a29c85cf..d0fd2624a74 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:06:10.401792+02:00", + "last_updated": "2021-06-08 10:24:18.593568+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9028c250b01924a51b09e07bbdcb7a1b4ed67f57 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:24:50 +0000 Subject: [PATCH 0015/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index dcee24111a6..98bfc4cec75 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:06:32.713564+02:00", + "last_updated": "2021-06-08 10:24:49.658877+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c12f095bbf8d38243ddccaf7ac4b5a8abfbf71cb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:25:23 +0000 Subject: [PATCH 0016/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index be2a051a491..e3b1e8b0e04 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:06:57.027973+02:00", + "last_updated": "2021-06-08 10:25:22.742839+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 11:50:00", + "prochain_rdv": "2021-06-17 12:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 214, + "appointment_count": 198, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From f288bf6ae0d03ade8afe84a987ed9b3857b15142 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:29:31 +0000 Subject: [PATCH 0017/1182] Updating the times for Region 22 --- 22.json | 76 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/22.json b/22.json index 0a8c3990213..9f746b938f4 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:10:52.109112+02:00", + "last_updated": "2021-06-08 10:29:31.238433+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:18:00", + "prochain_rdv": "2021-06-08 10:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5264, + "appointment_count": 5222, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 91, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Härnösand", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", + "cp": "00000" + }, + "metadata": { + "address": "Södra vägen 3-5", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-10 15:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 28, + "internal_id": "1309", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Kramfors", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 08:49:00", + "prochain_rdv": "2021-06-09 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 546, + "appointment_count": 1144, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:48:00", + "prochain_rdv": "2021-06-21 09:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1439, + "appointment_count": 1274, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 09:30:00", + "prochain_rdv": "2021-06-08 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 428, + "appointment_count": 423, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Härnösand", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.9298362078272, - "latitude": 62.62440429993568, - "city": "Härnösand", - "cp": "00000" - }, - "metadata": { - "address": "Södra vägen 3-5", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1309", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Junsele", From 345ad0b3b3e2e8331bcfa04b455786822f4b89be Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 08:29:58 +0000 Subject: [PATCH 0018/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 85532a62e6c..cafd975fcd7 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 09:11:13.885912+02:00", + "last_updated": "2021-06-08 10:29:57.626596+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 70432a4b41094104a3e3f647d8d4d881d147f8e4 Mon Sep 17 00:00:00 2001 From: abulascruz Date: Tue, 8 Jun 2021 10:37:10 +0200 Subject: [PATCH 0019/1182] Generate file in root directory. --- generate_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate_stats.py b/generate_stats.py index b2107ee61e7..a5b8c540507 100644 --- a/generate_stats.py +++ b/generate_stats.py @@ -47,5 +47,5 @@ 'creneaux': int(dose_count), } -with open('data/output/stats.json', 'w') as output_file: +with open('stats.json', 'w') as output_file: json.dump(output, output_file) From 2aee0afd93bac0c4fa173c2a3ef3927a46d2d675 Mon Sep 17 00:00:00 2001 From: abulascruz Date: Tue, 8 Jun 2021 11:03:49 +0200 Subject: [PATCH 0020/1182] Refactor stats code. --- .github/workflows/scrape_times.yml | 6 +- data/output/stats.json | 113 ++++++++++++++++++++++++++++- generate_stats.py | 4 +- 3 files changed, 117 insertions(+), 6 deletions(-) diff --git a/.github/workflows/scrape_times.yml b/.github/workflows/scrape_times.yml index a9a8a632131..932fc51ae87 100644 --- a/.github/workflows/scrape_times.yml +++ b/.github/workflows/scrape_times.yml @@ -58,10 +58,10 @@ jobs: timeout_seconds: 10 max_attempts: 5 command: | - git config --global user.name 'Pierre Mesure (Github Actions)' - git config --global user.email 'pierre@mesu.re' + git config --global user.name 'Ana Bulas Cruz (Github Actions)' + git config --global user.email 'anabulascruz@gmail.com' git config --global rebase.autoStash true git pull --rebase - git add stats.json + git add data/output/stats.json git commit -am "Updating the stats" git push diff --git a/data/output/stats.json b/data/output/stats.json index 789f2b6ef01..4a8abd5e139 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1 +1,112 @@ -{"10": {"disponibles": 9, "total": 19, "creneaux": 264}, "20": {"disponibles": 5, "total": 8, "creneaux": 3415}, "09": {"disponibles": 0, "total": 0, "creneaux": 0}, "21": {"disponibles": 0, "total": 0, "creneaux": 0}, "13": {"disponibles": 0, "total": 0, "creneaux": 0}, "23": {"disponibles": 0, "total": 0, "creneaux": 0}, "06": {"disponibles": 14, "total": 52, "creneaux": 3003}, "08": {"disponibles": 0, "total": 30, "creneaux": 0}, "07": {"disponibles": 4, "total": 7, "creneaux": 1392}, "25": {"disponibles": 0, "total": 0, "creneaux": 0}, "12": {"disponibles": 18, "total": 39, "creneaux": 11883}, "01": {"disponibles": 0, "total": 0, "creneaux": 0}, "04": {"disponibles": 4, "total": 6, "creneaux": 6574}, "03": {"disponibles": 0, "total": 0, "creneaux": 0}, "17": {"disponibles": 0, "total": 0, "creneaux": 0}, "24": {"disponibles": 1, "total": 4, "creneaux": 214}, "22": {"disponibles": 5, "total": 19, "creneaux": 7716}, "19": {"disponibles": 0, "total": 0, "creneaux": 0}, "14": {"disponibles": 0, "total": 112, "creneaux": 0}, "18": {"disponibles": 3, "total": 5, "creneaux": 95}, "05": {"disponibles": 13, "total": 38, "creneaux": 2099}, "tout_departement": {"disponibles": 76, "total": 339, "creneaux": 36655}} \ No newline at end of file +{ + "10": { + "disponibles": 11, + "total": 19, + "creneaux": 269 + }, + "20": { + "disponibles": 5, + "total": 8, + "creneaux": 3418 + }, + "09": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "21": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "13": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "23": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "06": { + "disponibles": 14, + "total": 52, + "creneaux": 2962 + }, + "08": { + "disponibles": 0, + "total": 30, + "creneaux": 0 + }, + "07": { + "disponibles": 4, + "total": 7, + "creneaux": 1362 + }, + "25": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "12": { + "disponibles": 18, + "total": 39, + "creneaux": 11883 + }, + "01": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "04": { + "disponibles": 4, + "total": 6, + "creneaux": 6511 + }, + "03": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "17": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "24": { + "disponibles": 1, + "total": 4, + "creneaux": 198 + }, + "22": { + "disponibles": 6, + "total": 19, + "creneaux": 8182 + }, + "19": { + "disponibles": 0, + "total": 0, + "creneaux": 0 + }, + "14": { + "disponibles": 0, + "total": 112, + "creneaux": 0 + }, + "18": { + "disponibles": 3, + "total": 5, + "creneaux": 95 + }, + "05": { + "disponibles": 13, + "total": 38, + "creneaux": 2099 + }, + "tout_departement": { + "disponibles": 79, + "total": 339, + "creneaux": 36979 + } +} \ No newline at end of file diff --git a/generate_stats.py b/generate_stats.py index a5b8c540507..eec787d6d56 100644 --- a/generate_stats.py +++ b/generate_stats.py @@ -1,5 +1,6 @@ import json import pandas as pd +from service.writer import Writer with open('regions.json') as regions_json: regions = json.load(regions_json) @@ -47,5 +48,4 @@ 'creneaux': int(dose_count), } -with open('stats.json', 'w') as output_file: - json.dump(output, output_file) +Writer.write_json(output, 'data/output/stats.json') From 749c82ea27948ac148a8f745d47e6e47d3cb7e8a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:05:08 +0000 Subject: [PATCH 0021/1182] Updating the times for Region 13 --- 13.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/13.json b/13.json index 1dd7c20b7da..8b178de007b 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:15:46.152880+02:00", +======= + "last_updated": "2021-06-08 11:05:05.825416+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 31b47a9ad32c680ba9fd2bc2cc63fd22f691595e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:05:38 +0000 Subject: [PATCH 0022/1182] Updating the times for Region 23 --- 23.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/23.json b/23.json index 32ca063d048..4ca7dae10e3 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:16:14.588075+02:00", +======= + "last_updated": "2021-06-08 11:05:36.202471+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3ad3c3f22dd9b5d8457426a07e37a3daa11806ad Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:08:54 +0000 Subject: [PATCH 0023/1182] Updating the times for Region 06 --- 06.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/06.json b/06.json index ef35ac0daa9..2ac98eafc6e 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:19:39.607398+02:00", +======= + "last_updated": "2021-06-08 11:08:52.349847+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +22,14 @@ "business_hours": null, "phone_number": "010-243 38 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-23 10:20:00", +======= + "prochain_rdv": "2021-06-23 10:25:00", +>>>>>>> Stashed changes "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 105, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +54,17 @@ "business_hours": null, "phone_number": "010-243 37 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-22 18:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 128, +======= + "prochain_rdv": "2021-06-22 18:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 112, +>>>>>>> Stashed changes "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +120,11 @@ "prochain_rdv": "2021-06-24 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 80, +======= + "appointment_count": 68, +>>>>>>> Stashed changes "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +261,14 @@ "business_hours": null, "phone_number": "010-243 86 10" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-10 15:32:00", +======= + "prochain_rdv": "2021-06-10 15:36:00", +>>>>>>> Stashed changes "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 339, + "appointment_count": 342, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +293,17 @@ "business_hours": null, "phone_number": "010-243 96 01" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-30 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 62, +======= + "prochain_rdv": "2021-06-30 11:12:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 66, +>>>>>>> Stashed changes "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +328,17 @@ "business_hours": null, "phone_number": "010-243 20 10" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-10 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 108, +======= + "prochain_rdv": "2021-06-23 13:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 76, +>>>>>>> Stashed changes "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +419,17 @@ "business_hours": null, "phone_number": "010-242 84 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-24 14:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 48, +======= + "prochain_rdv": "2021-06-24 14:12:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 54, +>>>>>>> Stashed changes "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, From 7d5bb5bc6d95bcc1f3c4b4f4223e03adb409c5cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:09:53 +0000 Subject: [PATCH 0024/1182] Updating the times for Region 08 --- 08.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/08.json b/08.json index 53f24d7e0fd..70323d74676 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:20:38.627897+02:00", +======= + "last_updated": "2021-06-08 11:09:50.708403+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From a5c8ed60145c447712c6b6fd0d2eb3a5ee65b32a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:10:43 +0000 Subject: [PATCH 0025/1182] Updating the times for Region 07 --- 07.json | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 85 insertions(+), 1 deletion(-) diff --git a/07.json b/07.json index a432fd59584..56c9798f2e2 100644 --- a/07.json +++ b/07.json @@ -1,10 +1,73 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:21:26.651487+02:00", +======= + "last_updated": "2021-06-08 11:10:41.681903+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { "departement": "07", +<<<<<<< Updated upstream +======= + "nom": "Folkets Hus", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.5515003, + "latitude": 56.9011986, + "city": "Alvesta", + "cp": "34230" + }, + "metadata": { + "address": "Allbogatan 15, 342 30 Alvesta", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-12 12:35:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 29999, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-11 12:40:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", +>>>>>>> Stashed changes "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", "location": { @@ -46,10 +109,17 @@ "business_hours": null, "phone_number": "" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-15 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 64, +======= + "prochain_rdv": "2021-06-16 08:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 63, +>>>>>>> Stashed changes "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +144,14 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 09:00:00", + "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 46, +======= + "appointment_count": 44, +>>>>>>> Stashed changes "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +176,17 @@ "business_hours": null, "phone_number": "" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-08 16:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1246, +======= + "prochain_rdv": "2021-06-16 10:24:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1225, +>>>>>>> Stashed changes "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -147,6 +228,7 @@ }, { "departement": "07", +<<<<<<< Updated upstream "nom": "Folkets Hus", "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", "location": { @@ -203,6 +285,8 @@ }, { "departement": "07", +======= +>>>>>>> Stashed changes "nom": "Nibehallen", "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", "location": { From 3a3a869a18d970c7cbba852cfd81a091ee6a59f7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:11:16 +0000 Subject: [PATCH 0026/1182] Updating the times for Region 25 --- 25.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/25.json b/25.json index 16a3c37bd67..8ba2b18383d 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:21:57.006916+02:00", +======= + "last_updated": "2021-06-08 11:11:14.256006+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5100deae82180dba6338807975f5edfe98328293 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:11:48 +0000 Subject: [PATCH 0027/1182] Updating the times for Region 01 --- 01.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/01.json b/01.json index a7b4efaff69..6646a4e225c 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:22:26.755818+02:00", +======= + "last_updated": "2021-06-08 11:11:46.403253+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 60946c73e1d91cbefacc3e470a6862fcc373de1c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:13:09 +0000 Subject: [PATCH 0028/1182] Updating the times for Region 04 --- 04.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/04.json b/04.json index 9825371044d..413dd9f533b 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:23:44.857006+02:00", +======= + "last_updated": "2021-06-08 11:13:07.391628+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +22,7 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 09:35:00", + "prochain_rdv": "2021-06-08 14:30:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 66, @@ -77,7 +81,11 @@ "prochain_rdv": "2021-07-06 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 814, +======= + "appointment_count": 739, +>>>>>>> Stashed changes "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +110,11 @@ "business_hours": null, "phone_number": "011-473 53 70" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-17 10:24:00", +======= + "prochain_rdv": "2021-06-11 11:04:00", +>>>>>>> Stashed changes "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 5592, From d5e46ebc7fad3a78f09e1dd0fcd03ef69383540a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:13:40 +0000 Subject: [PATCH 0029/1182] Updating the times for Region 03 --- 03.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/03.json b/03.json index d0fd2624a74..de0c9c5ecde 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:24:18.593568+02:00", +======= + "last_updated": "2021-06-08 11:13:38.429832+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 29cd498e4ddb47553e00370b06373c8ecdfb41fe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:14:10 +0000 Subject: [PATCH 0030/1182] Updating the times for Region 17 --- 17.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/17.json b/17.json index 98bfc4cec75..b5eeb90f2c1 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:24:49.658877+02:00", +======= + "last_updated": "2021-06-08 11:14:08.531680+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e3c5d19d65492b327192071fa85317f95888ace9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:14:45 +0000 Subject: [PATCH 0031/1182] Updating the times for Region 24 --- 24.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/24.json b/24.json index e3b1e8b0e04..b1ce8da0c16 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:25:22.742839+02:00", +======= + "last_updated": "2021-06-08 11:14:43.047880+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +22,14 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 12:25:00", + "prochain_rdv": "2021-06-17 12:35:00", "plateforme": "Vaccina", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 198, +======= + "appointment_count": 185, +>>>>>>> Stashed changes "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 9db0721f11729bc2ce0d03db9f57a0909097f83d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:18:59 +0000 Subject: [PATCH 0032/1182] Updating the times for Region 22 --- 22.json | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/22.json b/22.json index 9f746b938f4..85296dcabe9 100644 --- a/22.json +++ b/22.json @@ -1,11 +1,16 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:29:31.238433+02:00", +======= + "last_updated": "2021-06-08 11:18:57.833976+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", +<<<<<<< Updated upstream "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { "longitude": 18.73309939643111, @@ -34,6 +39,8 @@ { "departement": "22", "nom": "Vaccinationsenhet Husumgården", +======= +>>>>>>> Stashed changes "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { "longitude": 19.16616919246284, @@ -46,11 +53,19 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 91, "internal_id": "1327", +======= + "prochain_rdv": "2021-06-14 09:18:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 5166, + "internal_id": "1514", +>>>>>>> Stashed changes "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -102,10 +117,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-09 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1144, +======= + "prochain_rdv": "2021-06-09 09:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1050, +>>>>>>> Stashed changes "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +152,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-21 09:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1274, +======= + "prochain_rdv": "2021-06-21 09:18:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1260, +>>>>>>> Stashed changes "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +187,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-08 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 423, +======= + "prochain_rdv": "2021-06-08 11:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 419, +>>>>>>> Stashed changes "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -176,6 +212,37 @@ { "departement": "22", "nom": "Vaccinationsenhet Bollsta", +<<<<<<< Updated upstream +======= + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", +>>>>>>> Stashed changes "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { "longitude": 17.6703668135133, From 31347a09b052285b36b632aedbf2335c8de6011b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:19:32 +0000 Subject: [PATCH 0033/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index cafd975fcd7..117e974dc32 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 10:29:57.626596+02:00", +======= + "last_updated": "2021-06-08 11:19:29.891877+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 203c9b8601cf71119b22d60230e743c82fa55faa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:25:41 +0000 Subject: [PATCH 0034/1182] Updating the times for Region 10 --- 10.json | 178 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 89 insertions(+), 89 deletions(-) diff --git a/10.json b/10.json index b32adf5af85..8b91111985d 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:13:29.352215+02:00", + "last_updated": "2021-06-08 11:25:41.281582+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-08 10:40:00", + "prochain_rdv": "2021-06-22 11:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-09 14:05:00", + "prochain_rdv": "2021-06-22 08:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 106, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,62 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": "2021-06-24 15:10:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Hammarbyvägen 6", - "business_hours": null, - "phone_number": "0455-73 56 00" - }, - "prochain_rdv": "2021-06-23 13:25:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "575", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -158,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 13:55:00", + "prochain_rdv": "2021-06-24 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 11, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,24 +117,24 @@ }, { "departement": "10", - "nom": "Nättraby vårdcentral", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.536557149787294, - "latitude": 56.20188840773274, - "city": "Karlskrona", + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Kyrkvägen 16", + "address": "Kungsgatan 44", "business_hours": null, - "phone_number": "0455-73 57 20" + "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 10:15:00", + "prochain_rdv": "2021-06-08 15:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, - "internal_id": "587", + "appointment_count": 2, + "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +145,24 @@ }, { "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", + "nom": "Nättraby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", + "longitude": 15.536557149787294, + "latitude": 56.20188840773274, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Rösjövägen 10", + "address": "Kyrkvägen 16", "business_hours": null, - "phone_number": "0454-73 31 00" + "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-24 08:30:00", + "prochain_rdv": "2021-06-15 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "578", + "appointment_count": 63, + "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -242,10 +186,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 09:10:00", + "prochain_rdv": "2021-06-10 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -341,6 +285,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Jämjö vårdcentral, Jämjö", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Hammarbyvägen 6", + "business_hours": null, + "phone_number": "0455-73 56 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "575", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kungsmarkens vårdcentral, Karlskrona", @@ -371,24 +371,24 @@ }, { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Olofströms vårdcentral, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Rösjövägen 10", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0454-73 31 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "592", + "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 6648efea3c00e8421ba9e7e29a74fcc267a7030d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:26:31 +0000 Subject: [PATCH 0035/1182] Updating the times for Region 20 --- 20.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/20.json b/20.json index 4c97c94e880..9d257dbe924 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:14:15.682953+02:00", + "last_updated": "2021-06-08 11:26:30.670461+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-07 11:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2774, + "appointment_count": 2772, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 11:48:00", + "prochain_rdv": "2021-07-08 11:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 31, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 10:30:00", + "prochain_rdv": "2021-06-09 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 442, + "appointment_count": 173, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 09:10:00", + "prochain_rdv": "2021-06-21 14:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 150, + "appointment_count": 16, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 11:55:00", + "prochain_rdv": "2021-06-14 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 89, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From b82a199f7d1615d378d1e492c804efb1fed7ec89 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:26:58 +0000 Subject: [PATCH 0036/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 5b36d440f67..526c9727591 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:14:46.775884+02:00", + "last_updated": "2021-06-08 11:26:58.162278+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bc2ed7e486d895a69aa95c6cd2cd07bc6965663f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:27:28 +0000 Subject: [PATCH 0037/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 462611d4db2..0aa010dc857 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 10:15:13.574657+02:00", + "last_updated": "2021-06-08 11:27:28.177290+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 91f69955cbb3b7dbbd3c8c4fc6f6f59979f5e901 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:27:59 +0000 Subject: [PATCH 0038/1182] Updating the times for Region 13 --- 13.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/13.json b/13.json index 8b178de007b..c5335e9cdd1 100644 --- a/13.json +++ b/13.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:15:46.152880+02:00", -======= - "last_updated": "2021-06-08 11:05:05.825416+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:27:58.696016+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 973559ecb25f098ddf93bfe9cb6a483ac78704f2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:28:31 +0000 Subject: [PATCH 0039/1182] Updating the times for Region 23 --- 23.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/23.json b/23.json index 4ca7dae10e3..f363d85e9a2 100644 --- a/23.json +++ b/23.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:16:14.588075+02:00", -======= - "last_updated": "2021-06-08 11:05:36.202471+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:28:31.469935+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bd64e775a0a8fd134827b493d01fd315357ee770 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:31:44 +0000 Subject: [PATCH 0040/1182] Updating the times for Region 06 --- 06.json | 134 +++++++++++++++++++------------------------------------- 1 file changed, 45 insertions(+), 89 deletions(-) diff --git a/06.json b/06.json index 2ac98eafc6e..77f851864f6 100644 --- a/06.json +++ b/06.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:19:39.607398+02:00", -======= - "last_updated": "2021-06-08 11:08:52.349847+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:31:43.102934+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -22,11 +18,7 @@ "business_hours": null, "phone_number": "010-243 38 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-23 10:20:00", -======= "prochain_rdv": "2021-06-23 10:25:00", ->>>>>>> Stashed changes "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 105, @@ -54,17 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-22 18:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 128, -======= "prochain_rdv": "2021-06-22 18:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 112, ->>>>>>> Stashed changes "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -89,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-08 14:36:00", + "prochain_rdv": "2021-06-24 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, + "appointment_count": 55, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,6 +87,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Gnosjö vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.740003220192987, + "latitude": 57.35573378899504, + "city": "Gnosjö", + "cp": "00000" + }, + "metadata": { + "address": "Järnvägsgatan 49, Gnosjö", + "business_hours": null, + "phone_number": "010-244 80 15" + }, + "prochain_rdv": "2021-06-10 14:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1182", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Habo vårdcentral", @@ -117,14 +130,10 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-24 10:33:00", + "prochain_rdv": "2021-06-24 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 80, -======= - "appointment_count": 68, ->>>>>>> Stashed changes + "appointment_count": 44, "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -149,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-10 09:57:00", + "prochain_rdv": "2021-06-24 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 72, + "appointment_count": 60, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -233,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 19:42:00", + "prochain_rdv": "2021-06-10 15:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1674, + "appointment_count": 1678, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -261,14 +270,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-10 15:32:00", -======= - "prochain_rdv": "2021-06-10 15:36:00", ->>>>>>> Stashed changes + "prochain_rdv": "2021-06-18 13:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 342, + "appointment_count": 333, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -293,17 +298,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-30 13:15:00", + "prochain_rdv": "2021-06-30 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, -======= - "prochain_rdv": "2021-06-30 11:12:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 66, ->>>>>>> Stashed changes + "appointment_count": 60, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -328,17 +326,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-10 10:00:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 108, -======= - "prochain_rdv": "2021-06-23 13:20:00", + "prochain_rdv": "2021-06-23 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, ->>>>>>> Stashed changes + "appointment_count": 56, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -419,17 +410,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-24 14:32:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 48, -======= - "prochain_rdv": "2021-06-24 14:12:00", + "prochain_rdv": "2021-06-24 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, ->>>>>>> Stashed changes + "appointment_count": 45, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -581,34 +565,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Gnosjö vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 13.740003220192987, - "latitude": 57.35573378899504, - "city": "Gnosjö", - "cp": "00000" - }, - "metadata": { - "address": "Järnvägsgatan 49, Gnosjö", - "business_hours": null, - "phone_number": "010-244 80 15" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1182", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Gränna vårdcentral (18+ LSS/assistans/vårdnära)", From 6b815a9fb2b05f5c98457e32d0a6403f4cad5257 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:32:36 +0000 Subject: [PATCH 0041/1182] Updating the times for Region 08 --- 08.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/08.json b/08.json index 70323d74676..876ef49517c 100644 --- a/08.json +++ b/08.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:20:38.627897+02:00", -======= - "last_updated": "2021-06-08 11:09:50.708403+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:32:36.195658+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c4f50b46434d5cd9b75c018de47a2f825a38be98 Mon Sep 17 00:00:00 2001 From: abulascruz Date: Tue, 8 Jun 2021 11:32:59 +0200 Subject: [PATCH 0042/1182] Try only generate stats. --- .github/workflows/scrape_times.yml | 68 +++++++++++++++--------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/scrape_times.yml b/.github/workflows/scrape_times.yml index 932fc51ae87..f550a102b01 100644 --- a/.github/workflows/scrape_times.yml +++ b/.github/workflows/scrape_times.yml @@ -4,40 +4,40 @@ on: schedule: - cron: '0,15,30,45 * * * *' jobs: - scrape: - name: Scrape times - runs-on: ubuntu-latest - strategy: - max-parallel: 1 - matrix: - region: ['10', '20', '09', '21', '13', '23', '06', '08', '07', '25', '01', '04', '03', '17', '24', '22', '19', '14', '18', '05','12'] - steps: - - name: Download the code - uses: actions/checkout@v2 - - name: Install Python - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - name: Install the Python dependencies - run: pip3 install -r requirements.txt - - name: Scrape the data - run: python3 scrape_times.py ${{ matrix.region }} - env: - VGR_CLIENT_ID: ${{ secrets.VGR_CLIENT_ID }} - VGR_CLIENT_SECRET: ${{ secrets.VGR_CLIENT_SECRET }} - - name: Commit the data - uses: nick-invision/retry@v2 - with: - timeout_seconds: 10 - max_attempts: 5 - command: | - git config --global user.name 'Pierre Mesure (Github Actions)' - git config --global user.email 'pierre@mesu.re' - git config --global rebase.autoStash true - git pull --rebase - git add *.json - git commit -am "Updating the times for Region ${{ matrix.region }}" - git push + # scrape: + # name: Scrape times + # runs-on: ubuntu-latest + # strategy: + # max-parallel: 1 + # matrix: + # region: ['10', '20', '09', '21', '13', '23', '06', '08', '07', '25', '01', '04', '03', '17', '24', '22', '19', '14', '18', '05','12'] + # steps: + # - name: Download the code + # uses: actions/checkout@v2 + # - name: Install Python + # uses: actions/setup-python@v2 + # with: + # python-version: 3.9 + # - name: Install the Python dependencies + # run: pip3 install -r requirements.txt + # - name: Scrape the data + # run: python3 scrape_times.py ${{ matrix.region }} + # env: + # VGR_CLIENT_ID: ${{ secrets.VGR_CLIENT_ID }} + # VGR_CLIENT_SECRET: ${{ secrets.VGR_CLIENT_SECRET }} + # - name: Commit the data + # uses: nick-invision/retry@v2 + # with: + # timeout_seconds: 10 + # max_attempts: 5 + # command: | + # git config --global user.name 'Pierre Mesure (Github Actions)' + # git config --global user.email 'pierre@mesu.re' + # git config --global rebase.autoStash true + # git pull --rebase + # git add *.json + # git commit -am "Updating the times for Region ${{ matrix.region }}" + # git push generate_stats: name: Generate the stats runs-on: ubuntu-latest From ffebb6915b7b62def47d7a605b225baed9c3095d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:33:26 +0000 Subject: [PATCH 0043/1182] Updating the times for Region 07 --- 07.json | 94 +++------------------------------------------------------ 1 file changed, 5 insertions(+), 89 deletions(-) diff --git a/07.json b/07.json index 56c9798f2e2..b93301438a3 100644 --- a/07.json +++ b/07.json @@ -1,73 +1,10 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:21:26.651487+02:00", -======= - "last_updated": "2021-06-08 11:10:41.681903+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:33:25.657797+02:00", "last_scrap": [], "centres_disponibles": [ { "departement": "07", -<<<<<<< Updated upstream -======= - "nom": "Folkets Hus", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 14.5515003, - "latitude": 56.9011986, - "city": "Alvesta", - "cp": "34230" - }, - "metadata": { - "address": "Allbogatan 15, 342 30 Alvesta", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-12 12:35:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 29999, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "07", - "nom": "Garvaren", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 13.9309756, - "latitude": 56.83242, - "city": "Ljungby", - "cp": "34160" - }, - "metadata": { - "address": "Stationsgatan 2, 341 60 Ljungby", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-11 12:40:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30000, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "07", ->>>>>>> Stashed changes "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", "location": { @@ -109,17 +46,10 @@ "business_hours": null, "phone_number": "" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-15 11:00:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 64, -======= "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, ->>>>>>> Stashed changes + "appointment_count": 62, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -144,14 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-15 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 46, -======= "appointment_count": 44, ->>>>>>> Stashed changes "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -176,17 +102,10 @@ "business_hours": null, "phone_number": "" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-08 16:24:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1246, -======= - "prochain_rdv": "2021-06-16 10:24:00", + "prochain_rdv": "2021-06-14 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1225, ->>>>>>> Stashed changes + "appointment_count": 1232, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -228,7 +147,6 @@ }, { "departement": "07", -<<<<<<< Updated upstream "nom": "Folkets Hus", "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", "location": { @@ -285,8 +203,6 @@ }, { "departement": "07", -======= ->>>>>>> Stashed changes "nom": "Nibehallen", "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", "location": { From d05b88e50e698299bdbcb9fd1ccd2140d76fb83e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:33:55 +0000 Subject: [PATCH 0044/1182] Updating the times for Region 25 --- 25.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/25.json b/25.json index 8ba2b18383d..30e00fb46e0 100644 --- a/25.json +++ b/25.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:21:57.006916+02:00", -======= - "last_updated": "2021-06-08 11:11:14.256006+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:33:54.783723+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 72cac8cf06b0815fcc4118b6b44b229046b0801d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:35:38 +0000 Subject: [PATCH 0045/1182] Updating the times for Region 04 --- 04.json | 80 ++++++++++++++++++++++++--------------------------------- 1 file changed, 34 insertions(+), 46 deletions(-) diff --git a/04.json b/04.json index 413dd9f533b..0ad2a676120 100644 --- a/04.json +++ b/04.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:23:44.857006+02:00", -======= - "last_updated": "2021-06-08 11:13:07.391628+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:35:36.248349+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -25,7 +21,7 @@ "prochain_rdv": "2021-06-08 14:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 61, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -35,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-08 17:00:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -53,7 +77,7 @@ "prochain_rdv": "2021-06-22 14:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 37, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -81,11 +105,7 @@ "prochain_rdv": "2021-07-06 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 814, -======= - "appointment_count": 739, ->>>>>>> Stashed changes + "appointment_count": 665, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -110,14 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-17 10:24:00", -======= - "prochain_rdv": "2021-06-11 11:04:00", ->>>>>>> Stashed changes + "prochain_rdv": "2021-06-17 10:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5592, + "appointment_count": 5568, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -241,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 5b647bbaf5a144d89d3326a2c73b55b264019c38 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:36:09 +0000 Subject: [PATCH 0046/1182] Updating the times for Region 03 --- 03.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/03.json b/03.json index de0c9c5ecde..71c50a607e9 100644 --- a/03.json +++ b/03.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:24:18.593568+02:00", -======= - "last_updated": "2021-06-08 11:13:38.429832+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:36:07.620022+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3543e09fb36e06a4c29cb6a33d21bbf7023b0e76 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:36:41 +0000 Subject: [PATCH 0047/1182] Updating the times for Region 17 --- 17.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/17.json b/17.json index b5eeb90f2c1..b63c7fd4ba5 100644 --- a/17.json +++ b/17.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:24:49.658877+02:00", -======= - "last_updated": "2021-06-08 11:14:08.531680+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:36:39.748523+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8c30b1673e56ee707e89b91c36e2ba44f5229caf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:37:13 +0000 Subject: [PATCH 0048/1182] Updating the times for Region 24 --- 24.json | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/24.json b/24.json index b1ce8da0c16..cccf7bb6f65 100644 --- a/24.json +++ b/24.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:25:22.742839+02:00", -======= - "last_updated": "2021-06-08 11:14:43.047880+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:37:11.807904+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -25,11 +21,7 @@ "prochain_rdv": "2021-06-17 12:35:00", "plateforme": "Vaccina", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 198, -======= - "appointment_count": 185, ->>>>>>> Stashed changes + "appointment_count": 180, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 66968d21e12bf14173f3c4c1bbf1bff1a9a5abd0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:41:26 +0000 Subject: [PATCH 0049/1182] Updating the times for Region 22 --- 22.json | 141 +++++++++++++++----------------------------------------- 1 file changed, 37 insertions(+), 104 deletions(-) diff --git a/22.json b/22.json index 85296dcabe9..d233b8ce095 100644 --- a/22.json +++ b/22.json @@ -1,16 +1,11 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:29:31.238433+02:00", -======= - "last_updated": "2021-06-08 11:18:57.833976+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:41:24.220585+02:00", "last_scrap": [], "centres_disponibles": [ { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", -<<<<<<< Updated upstream "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { "longitude": 18.73309939643111, @@ -23,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 10:42:00", + "prochain_rdv": "2021-06-14 09:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5222, + "appointment_count": 5124, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -38,34 +33,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Husumgården", -======= ->>>>>>> Stashed changes + "nom": "Vaccinationsenhet Fränsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 19.16616919246284, - "latitude": 63.335090194766195, - "city": "Örnsköldsvik", + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", "cp": "00000" }, "metadata": { - "address": "Blåsåsen 2, Husum", + "address": "Mårtensvägen 2, Fränsta", "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-17 11:27:00", + "prochain_rdv": "2021-06-18 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, - "internal_id": "1327", -======= - "prochain_rdv": "2021-06-14 09:18:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 5166, - "internal_id": "1514", ->>>>>>> Stashed changes + "appointment_count": 28, + "internal_id": "926", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -76,24 +61,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Härnösand", + "nom": "Vaccinationsenhet Husumgården", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.9298362078272, - "latitude": 62.62440429993568, - "city": "Härnösand", + "longitude": 19.16616919246284, + "latitude": 63.335090194766195, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Södra vägen 3-5", + "address": "Blåsåsen 2, Husum", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 15:55:00", + "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, - "internal_id": "1309", + "appointment_count": 91, + "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,17 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-09 08:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1144, -======= - "prochain_rdv": "2021-06-09 09:10:00", + "prochain_rdv": "2021-06-09 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1050, ->>>>>>> Stashed changes + "appointment_count": 1036, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -152,17 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-21 09:12:00", + "prochain_rdv": "2021-06-21 09:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1274, -======= - "prochain_rdv": "2021-06-21 09:18:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1260, ->>>>>>> Stashed changes + "appointment_count": 1183, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -187,17 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-08 10:30:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 423, -======= - "prochain_rdv": "2021-06-08 11:20:00", + "prochain_rdv": "2021-06-08 11:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 419, ->>>>>>> Stashed changes + "appointment_count": 416, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -212,8 +176,6 @@ { "departement": "22", "nom": "Vaccinationsenhet Bollsta", -<<<<<<< Updated upstream -======= "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { "longitude": 17.6703668135133, @@ -241,45 +203,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Fränsta", ->>>>>>> Stashed changes - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", + "nom": "Vaccinationsenhet Församlingshemmet Björna", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", + "longitude": 18.599430359109586, + "latitude": 63.55227676376663, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Mårtensvägen 2, Fränsta", + "address": "Järnvägsgatan 6, Björna", "business_hours": null, "phone_number": "0611-804 00" }, @@ -287,7 +220,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "926", + "internal_id": "1332", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -298,16 +231,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Församlingshemmet Björna", + "nom": "Vaccinationsenhet Härnösand", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 18.599430359109586, - "latitude": 63.55227676376663, - "city": "Örnsköldsvik", + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", "cp": "00000" }, "metadata": { - "address": "Järnvägsgatan 6, Björna", + "address": "Södra vägen 3-5", "business_hours": null, "phone_number": "0611-804 00" }, @@ -315,7 +248,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1332", + "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 7469c0e3d9ef832535184b0656aa8592f2ee9d96 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 09:41:57 +0000 Subject: [PATCH 0050/1182] Updating the times for Region 19 --- 19.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/19.json b/19.json index 117e974dc32..c03a475960e 100644 --- a/19.json +++ b/19.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:29:57.626596+02:00", -======= - "last_updated": "2021-06-08 11:19:29.891877+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 11:41:56.141219+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0e898bb12f831d9e219a374c068965c363830bde Mon Sep 17 00:00:00 2001 From: abulascruz Date: Tue, 8 Jun 2021 11:46:54 +0200 Subject: [PATCH 0051/1182] Fix 01.json and refactor. --- 01.json | 6 +----- data/output/stats.json | 22 +++++++++++----------- generate_stats.py | 2 +- 3 files changed, 13 insertions(+), 17 deletions(-) diff --git a/01.json b/01.json index 6646a4e225c..faa43831dfd 100644 --- a/01.json +++ b/01.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 10:22:26.755818+02:00", -======= "last_updated": "2021-06-08 11:11:46.403253+02:00", ->>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ @@ -765,4 +761,4 @@ "gid": null } ] -} \ No newline at end of file +} diff --git a/data/output/stats.json b/data/output/stats.json index 4a8abd5e139..e9898c0ffca 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 11, + "disponibles": 9, "total": 19, - "creneaux": 269 + "creneaux": 268 }, "20": { "disponibles": 5, "total": 8, - "creneaux": 3418 + "creneaux": 3081 }, "09": { "disponibles": 0, @@ -30,9 +30,9 @@ "creneaux": 0 }, "06": { - "disponibles": 14, + "disponibles": 15, "total": 52, - "creneaux": 2962 + "creneaux": 2836 }, "08": { "disponibles": 0, @@ -42,7 +42,7 @@ "07": { "disponibles": 4, "total": 7, - "creneaux": 1362 + "creneaux": 1344 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 6511 + "creneaux": 6332 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 198 + "creneaux": 180 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 8182 + "creneaux": 7878 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 79, "total": 339, - "creneaux": 36979 + "creneaux": 35996 } } \ No newline at end of file diff --git a/generate_stats.py b/generate_stats.py index eec787d6d56..d314e097ea9 100644 --- a/generate_stats.py +++ b/generate_stats.py @@ -12,7 +12,7 @@ for region in regions: - with open(region['code'] + '.json') as region_json: + with open('{}.json'.format(region['code'])) as region_json: appointments = json.load(region_json) # Number of vaccination centres that have available vaccines From d2d83b31514f2981c7d33f50875fb64665166a1e Mon Sep 17 00:00:00 2001 From: abulascruz Date: Tue, 8 Jun 2021 11:54:06 +0200 Subject: [PATCH 0052/1182] Reactivate times scrappers. --- .github/workflows/scrape_times.yml | 68 +++++++++++++++--------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/scrape_times.yml b/.github/workflows/scrape_times.yml index f550a102b01..932fc51ae87 100644 --- a/.github/workflows/scrape_times.yml +++ b/.github/workflows/scrape_times.yml @@ -4,40 +4,40 @@ on: schedule: - cron: '0,15,30,45 * * * *' jobs: - # scrape: - # name: Scrape times - # runs-on: ubuntu-latest - # strategy: - # max-parallel: 1 - # matrix: - # region: ['10', '20', '09', '21', '13', '23', '06', '08', '07', '25', '01', '04', '03', '17', '24', '22', '19', '14', '18', '05','12'] - # steps: - # - name: Download the code - # uses: actions/checkout@v2 - # - name: Install Python - # uses: actions/setup-python@v2 - # with: - # python-version: 3.9 - # - name: Install the Python dependencies - # run: pip3 install -r requirements.txt - # - name: Scrape the data - # run: python3 scrape_times.py ${{ matrix.region }} - # env: - # VGR_CLIENT_ID: ${{ secrets.VGR_CLIENT_ID }} - # VGR_CLIENT_SECRET: ${{ secrets.VGR_CLIENT_SECRET }} - # - name: Commit the data - # uses: nick-invision/retry@v2 - # with: - # timeout_seconds: 10 - # max_attempts: 5 - # command: | - # git config --global user.name 'Pierre Mesure (Github Actions)' - # git config --global user.email 'pierre@mesu.re' - # git config --global rebase.autoStash true - # git pull --rebase - # git add *.json - # git commit -am "Updating the times for Region ${{ matrix.region }}" - # git push + scrape: + name: Scrape times + runs-on: ubuntu-latest + strategy: + max-parallel: 1 + matrix: + region: ['10', '20', '09', '21', '13', '23', '06', '08', '07', '25', '01', '04', '03', '17', '24', '22', '19', '14', '18', '05','12'] + steps: + - name: Download the code + uses: actions/checkout@v2 + - name: Install Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Install the Python dependencies + run: pip3 install -r requirements.txt + - name: Scrape the data + run: python3 scrape_times.py ${{ matrix.region }} + env: + VGR_CLIENT_ID: ${{ secrets.VGR_CLIENT_ID }} + VGR_CLIENT_SECRET: ${{ secrets.VGR_CLIENT_SECRET }} + - name: Commit the data + uses: nick-invision/retry@v2 + with: + timeout_seconds: 10 + max_attempts: 5 + command: | + git config --global user.name 'Pierre Mesure (Github Actions)' + git config --global user.email 'pierre@mesu.re' + git config --global rebase.autoStash true + git pull --rebase + git add *.json + git commit -am "Updating the times for Region ${{ matrix.region }}" + git push generate_stats: name: Generate the stats runs-on: ubuntu-latest From d32329e3c0fc2367a44019d8afb2a7476cdc0dbd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:27:36 +0000 Subject: [PATCH 0053/1182] Updating the times for Region 10 --- 10.json | 186 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 93 insertions(+), 93 deletions(-) diff --git a/10.json b/10.json index 8b91111985d..0631193896c 100644 --- a/10.json +++ b/10.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 11:25:41.281582+02:00", + "last_updated": "2021-06-08 12:27:35.746870+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "10", - "nom": "Brunnsgårdens vårdcentral, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.86913980363779, - "latitude": 56.1714540982337, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Erik Dahlbergsvägen 30", - "business_hours": null, - "phone_number": "0454-73 27 00" - }, - "prochain_rdv": "2021-06-22 11:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "580", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Capio Citykliniken, Ronneby", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 14:10:00", + "prochain_rdv": "2021-06-16 16:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 17, + "appointment_count": 18, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +102,7 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-08 15:35:00", + "prochain_rdv": "2021-06-08 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-15 10:35:00", + "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 59, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 11:00:00", + "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 23, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,6 +171,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": "2021-06-09 15:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-07-03 09:15:00", + "prochain_rdv": "2021-07-03 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 43, + "appointment_count": 42, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,24 +229,24 @@ }, { "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", + "nom": "Trossö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "address": "Fortifikationsgatan 9, Karlskrona", "business_hours": null, - "phone_number": "0455-73 54 30" + "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-24 14:05:00", + "prochain_rdv": "2021-06-23 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, - "internal_id": "581", + "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -257,6 +257,34 @@ } ], "centres_indisponibles": [ + { + "departement": "10", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Erik Dahlbergsvägen 30", + "business_hours": null, + "phone_number": "0454-73 27 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "580", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", @@ -425,34 +453,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", @@ -483,24 +483,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Tvings läkarmottagning, Tving", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, + "longitude": 15.458891376975423, + "latitude": 56.311424366793545, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Rävalyckan 2", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0455-33 05 05" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "586", + "internal_id": "594", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -511,24 +511,24 @@ }, { "departement": "10", - "nom": "Tvings läkarmottagning, Tving", + "nom": "Valjehälsan, Sölvesborg", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.458891376975423, - "latitude": 56.311424366793545, - "city": "Karlskrona", + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Rävalyckan 2", + "address": "Herrgårdsvägen 97", "business_hours": null, - "phone_number": "0455-33 05 05" + "phone_number": "0456-329 60" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "594", + "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -539,24 +539,24 @@ }, { "departement": "10", - "nom": "Valjehälsan, Sölvesborg", + "nom": "Wämö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Herrgårdsvägen 97", + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", "business_hours": null, - "phone_number": "0456-329 60" + "phone_number": "0455-73 54 30" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "597", + "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 34360e14fa9d590f5d6007ca5c65d51fd4ae5e0d Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 10:53:40 +0000 Subject: [PATCH 0054/1182] Updating the stats --- data/output/stats.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index e9898c0ffca..3f446e2577b 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,7 +2,7 @@ "10": { "disponibles": 9, "total": 19, - "creneaux": 268 + "creneaux": 263 }, "20": { "disponibles": 5, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 79, "total": 339, - "creneaux": 35996 + "creneaux": 35991 } } \ No newline at end of file From 3eaabdc00d11fa160afc146d405560735539a2a8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:54:16 +0000 Subject: [PATCH 0055/1182] Updating the times for Region 10 --- 10.json | 180 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/10.json b/10.json index 0631193896c..f6f081a70c9 100644 --- a/10.json +++ b/10.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 12:27:35.746870+02:00", + "last_updated": "2021-06-08 12:54:15.857194+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "10", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Erik Dahlbergsvägen 30", + "business_hours": null, + "phone_number": "0454-73 27 00" + }, + "prochain_rdv": "2021-06-22 14:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "580", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Capio Citykliniken, Ronneby", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 16:40:00", + "prochain_rdv": "2021-06-22 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 16, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-08 15:40:00", + "prochain_rdv": "2021-06-15 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +189,7 @@ "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 22, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -171,34 +199,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": "2021-06-09 15:05:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -214,7 +214,7 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-07-03 09:00:00", + "prochain_rdv": "2021-07-03 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 42, @@ -229,24 +229,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Wämö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-23 09:45:00", + "prochain_rdv": "2021-06-08 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, - "internal_id": "586", + "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -257,34 +257,6 @@ } ], "centres_indisponibles": [ - { - "departement": "10", - "nom": "Brunnsgårdens vårdcentral, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.86913980363779, - "latitude": 56.1714540982337, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Erik Dahlbergsvägen 30", - "business_hours": null, - "phone_number": "0454-73 27 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "580", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", @@ -453,6 +425,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", @@ -483,24 +483,24 @@ }, { "departement": "10", - "nom": "Tvings läkarmottagning, Tving", + "nom": "Trossö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.458891376975423, - "latitude": 56.311424366793545, + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Rävalyckan 2", + "address": "Fortifikationsgatan 9, Karlskrona", "business_hours": null, - "phone_number": "0455-33 05 05" + "phone_number": "0455-73 57 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "594", + "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -511,24 +511,24 @@ }, { "departement": "10", - "nom": "Valjehälsan, Sölvesborg", + "nom": "Tvings läkarmottagning, Tving", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", + "longitude": 15.458891376975423, + "latitude": 56.311424366793545, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Herrgårdsvägen 97", + "address": "Rävalyckan 2", "business_hours": null, - "phone_number": "0456-329 60" + "phone_number": "0455-33 05 05" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "597", + "internal_id": "594", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -539,24 +539,24 @@ }, { "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", + "nom": "Valjehälsan, Sölvesborg", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "address": "Herrgårdsvägen 97", "business_hours": null, - "phone_number": "0455-73 54 30" + "phone_number": "0456-329 60" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "581", + "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From da21b38412fae5adb523c605841adc97773e7d7c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:54:58 +0000 Subject: [PATCH 0056/1182] Updating the times for Region 20 --- 20.json | 86 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/20.json b/20.json index 9d257dbe924..fe9cd1b6dae 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:26:30.670461+02:00", + "last_updated": "2021-06-08 12:54:57.833864+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 11:32:00", + "prochain_rdv": "2021-06-14 12:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2772, + "appointment_count": 2768, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 11:48:00", + "prochain_rdv": "2021-06-10 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, - "internal_id": "2111", + "appointment_count": 1, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:15:00", + "prochain_rdv": "2021-07-09 12:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 173, - "internal_id": "2102", + "appointment_count": 29, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-21 14:30:00", + "prochain_rdv": "2021-07-05 13:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, - "internal_id": "2101", + "appointment_count": 1, + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +117,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 11:25:00", + "prochain_rdv": "2021-06-15 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 89, - "internal_id": "2103", + "appointment_count": 180, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -142,29 +142,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-14 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 63, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -175,24 +173,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-15 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2115", + "appointment_count": 78, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -200,7 +198,9 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", "nom": "Doktor.se / Mora", From 46ca96a127210234b468b255496b357b9a06a277 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:55:27 +0000 Subject: [PATCH 0057/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 526c9727591..91181716659 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:26:58.162278+02:00", + "last_updated": "2021-06-08 12:55:27.185620+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b42b004e5d833912687d682f033d00429b77d951 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:55:57 +0000 Subject: [PATCH 0058/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 0aa010dc857..3b2079aeb72 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:27:28.177290+02:00", + "last_updated": "2021-06-08 12:55:57.426866+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 30032120e8a268644f0e0b14fde08e6efbb98b5a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:56:26 +0000 Subject: [PATCH 0059/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index c5335e9cdd1..33bfae5aa23 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:27:58.696016+02:00", + "last_updated": "2021-06-08 12:56:25.632782+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b1c7aaeb255f9a30f88880a3a2503ec78ed643dd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 10:56:54 +0000 Subject: [PATCH 0060/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index f363d85e9a2..a69fb0dfc9d 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:28:31.469935+02:00", + "last_updated": "2021-06-08 12:56:54.245756+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b9723d17569e2c4ec12602b296e2f1d22dd60f6f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:00:07 +0000 Subject: [PATCH 0061/1182] Updating the times for Region 06 --- 06.json | 106 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/06.json b/06.json index 77f851864f6..d1bdfd7ed2f 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:31:43.102934+02:00", + "last_updated": "2021-06-08 13:00:07.236028+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:25:00", + "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 105, + "appointment_count": 99, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -89,24 +89,24 @@ }, { "departement": "06", - "nom": "Bra Liv Gnosjö vårdcentral", + "nom": "Bra Liv Habo vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 13.740003220192987, - "latitude": 57.35573378899504, - "city": "Gnosjö", + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", "cp": "00000" }, "metadata": { - "address": "Järnvägsgatan 49, Gnosjö", + "address": "Kärrsvägen 37, Habo", "business_hours": null, - "phone_number": "010-244 80 15" + "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-10 14:25:00", + "prochain_rdv": "2021-06-24 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1182", + "appointment_count": 40, + "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +117,24 @@ }, { "departement": "06", - "nom": "Bra Liv Habo vårdcentral", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Kärrsvägen 37, Habo", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-242 48 00" + "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-24 10:48:00", + "prochain_rdv": "2021-06-22 12:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, - "internal_id": "1184", + "appointment_count": 58, + "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-22 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 60, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 10:50:00", + "prochain_rdv": "2021-06-30 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-10 15:03:00", + "prochain_rdv": "2021-06-23 19:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1678, + "appointment_count": 1662, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,7 +270,7 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-18 13:52:00", + "prochain_rdv": "2021-06-10 13:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 333, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-30 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 58, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-23 13:25:00", + "prochain_rdv": "2021-06-23 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 24, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 13:46:00", + "prochain_rdv": "2021-06-24 14:22:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 84, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-29 13:30:00", + "prochain_rdv": "2021-06-17 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 114, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,7 +410,7 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 14:36:00", + "prochain_rdv": "2021-06-09 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 45, @@ -567,24 +567,24 @@ }, { "departement": "06", - "nom": "Bra Liv Gränna vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Gnosjö vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.46789629286442, - "latitude": 58.02616642345095, - "city": "Jönköping", + "longitude": 13.740003220192987, + "latitude": 57.35573378899504, + "city": "Gnosjö", "cp": "00000" }, "metadata": { - "address": "Hävdevägen 31, Gränna", + "address": "Järnvägsgatan 49, Gnosjö", "business_hours": null, - "phone_number": "010-242 49 00" + "phone_number": "010-244 80 15" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1499", + "internal_id": "1182", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -595,7 +595,7 @@ }, { "departement": "06", - "nom": "Bra Liv Gränna vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Gränna vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.46789629286442, @@ -612,7 +612,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1183", + "internal_id": "1499", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -623,24 +623,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "nom": "Bra Liv Gränna vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, + "longitude": 14.46789629286442, + "latitude": 58.02616642345095, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Hävdevägen 31, Gränna", "business_hours": null, - "phone_number": "010-242 54 00" + "phone_number": "010-242 49 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1186", + "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -651,7 +651,7 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.158432109596234, @@ -662,13 +662,13 @@ "metadata": { "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-242 54 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1187", + "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 2cc4261403e0339e96a9ab304beb3ad390a5a3ae Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:01:07 +0000 Subject: [PATCH 0062/1182] Updating the times for Region 08 --- 08.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08.json b/08.json index 876ef49517c..77337022224 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:32:36.195658+02:00", + "last_updated": "2021-06-08 13:01:07.305260+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8a16371ca5af645fb3e9eae50b427603e632eb2f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:01:58 +0000 Subject: [PATCH 0063/1182] Updating the times for Region 07 --- 07.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/07.json b/07.json index b93301438a3..0fee5d40e44 100644 --- a/07.json +++ b/07.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 11:33:25.657797+02:00", + "last_updated": "2021-06-08 13:01:57.742586+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "07", + "nom": "Folkets Hus", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.5515003, + "latitude": 56.9011986, + "city": "Alvesta", + "cp": "34230" + }, + "metadata": { + "address": "Allbogatan 15, 342 30 Alvesta", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-08 13:15:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": 29999, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 08:50:00", + "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 4, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 61, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 09:00:00", + "prochain_rdv": "2021-06-09 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 45, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 09:32:00", + "prochain_rdv": "2021-06-08 13:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1232, + "appointment_count": 1190, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,34 +173,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "07", - "nom": "Folkets Hus", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 14.5515003, - "latitude": 56.9011986, - "city": "Alvesta", - "cp": "34230" - }, - "metadata": { - "address": "Allbogatan 15, 342 30 Alvesta", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 29999, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Garvaren", From 863a6c9974e6453850e79122ebed31adf5455974 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:02:26 +0000 Subject: [PATCH 0064/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 30e00fb46e0..843c3b1025b 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:33:54.783723+02:00", + "last_updated": "2021-06-08 13:02:26.043325+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7b6608d62ac1f2255594e73edda1c6227b99fc1a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:02:54 +0000 Subject: [PATCH 0065/1182] Updating the times for Region 01 --- 01.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01.json b/01.json index faa43831dfd..f98b7348931 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:11:46.403253+02:00", + "last_updated": "2021-06-08 13:02:54.284838+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ @@ -761,4 +761,4 @@ "gid": null } ] -} +} \ No newline at end of file From 99872b5389bf6e467c1ef0fd4e673538c5a2225a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:04:12 +0000 Subject: [PATCH 0066/1182] Updating the times for Region 04 --- 04.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/04.json b/04.json index 0ad2a676120..e138d6e1db0 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:35:36.248349+02:00", + "last_updated": "2021-06-08 13:04:11.701577+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-08 14:30:00", + "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 57, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-08 17:00:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -77,7 +49,7 @@ "prochain_rdv": "2021-06-22 14:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 33, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-07-06 18:50:00", + "prochain_rdv": "2021-07-06 18:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 665, + "appointment_count": 618, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +105,7 @@ "prochain_rdv": "2021-06-17 10:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5568, + "appointment_count": 5560, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From e36718b7145ec7efa822feeb7df76de976f23129 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:04:40 +0000 Subject: [PATCH 0067/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 71c50a607e9..7e25c18ff2a 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:36:07.620022+02:00", + "last_updated": "2021-06-08 13:04:39.540025+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 72a0b38852d9d8d149c93345101706479bddba5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:05:09 +0000 Subject: [PATCH 0068/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index b63c7fd4ba5..bace1832630 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:36:39.748523+02:00", + "last_updated": "2021-06-08 13:05:09.058881+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2858b93314482239bf0225a048e5ba019dedbe5f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:05:44 +0000 Subject: [PATCH 0069/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index cccf7bb6f65..f172bed689f 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:37:11.807904+02:00", + "last_updated": "2021-06-08 13:05:43.953803+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 12:35:00", + "prochain_rdv": "2021-06-14 14:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 180, + "appointment_count": 165, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From a979d6b3e4c197e7956e38d3df43c66e458ccf2b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:09:56 +0000 Subject: [PATCH 0070/1182] Updating the times for Region 22 --- 22.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/22.json b/22.json index d233b8ce095..9fbc30cc425 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:41:24.220585+02:00", + "last_updated": "2021-06-08 13:09:56.063112+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:24:00", + "prochain_rdv": "2021-06-11 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5124, + "appointment_count": 5152, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-18 14:10:00", + "prochain_rdv": "2021-06-21 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 14, "internal_id": "926", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 78, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:05:00", + "prochain_rdv": "2021-06-09 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1036, + "appointment_count": 984, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:21:00", + "prochain_rdv": "2021-06-21 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1183, + "appointment_count": 1036, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 11:50:00", + "prochain_rdv": "2021-06-08 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 416, + "appointment_count": 407, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From 49bee0c91d1effd1e79c3e74035050c8138cddb6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:10:22 +0000 Subject: [PATCH 0071/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index c03a475960e..cd016970bb9 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 11:41:56.141219+02:00", + "last_updated": "2021-06-08 13:10:22.131891+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ff9ed468cd96324f8738519823591a6082aac470 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 11:20:46 +0000 Subject: [PATCH 0072/1182] Updating the stats --- data/output/stats.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 3f446e2577b..d85db9a98d0 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 9, "total": 19, - "creneaux": 263 + "creneaux": 259 }, "20": { - "disponibles": 5, + "disponibles": 7, "total": 8, - "creneaux": 3081 + "creneaux": 3120 }, "09": { "disponibles": 0, @@ -32,7 +32,7 @@ "06": { "disponibles": 15, "total": 52, - "creneaux": 2836 + "creneaux": 2840 }, "08": { "disponibles": 0, @@ -40,9 +40,9 @@ "creneaux": 0 }, "07": { - "disponibles": 4, + "disponibles": 5, "total": 7, - "creneaux": 1344 + "creneaux": 1302 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 6332 + "creneaux": 6268 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 180 + "creneaux": 165 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 7878 + "creneaux": 7671 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 79, + "disponibles": 81, "total": 339, - "creneaux": 35991 + "creneaux": 35702 } } \ No newline at end of file From 11e30a3dde4787dd137d9e7f0104d0f5758fe8dd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:21:21 +0000 Subject: [PATCH 0073/1182] Updating the times for Region 10 --- 10.json | 162 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 81 insertions(+), 81 deletions(-) diff --git a/10.json b/10.json index f6f081a70c9..471507c3fd3 100644 --- a/10.json +++ b/10.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 12:54:15.857194+02:00", + "last_updated": "2021-06-08 13:21:20.795088+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "10", - "nom": "Brunnsgårdens vårdcentral, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.86913980363779, - "latitude": 56.1714540982337, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Erik Dahlbergsvägen 30", - "business_hours": null, - "phone_number": "0454-73 27 00" - }, - "prochain_rdv": "2021-06-22 14:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "580", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Capio Citykliniken, Ronneby", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 14:10:00", + "prochain_rdv": "2021-06-23 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 15, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-24 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 10, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -117,24 +89,24 @@ }, { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Nättraby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 15.536557149787294, + "latitude": 56.20188840773274, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Kyrkvägen 16", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-15 10:45:00", + "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "592", + "appointment_count": 59, + "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +117,24 @@ }, { "departement": "10", - "nom": "Nättraby vårdcentral", + "nom": "Olofströmskliniken, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.536557149787294, - "latitude": 56.20188840773274, - "city": "Karlskrona", - "cp": "00000" + "longitude": 14.531238346499302, + "latitude": 56.27719149748354, + "city": "Olofström", + "cp": "29334" }, "metadata": { - "address": "Kyrkvägen 16", + "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", "business_hours": null, - "phone_number": "0455-73 57 20" + "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:40:00", + "prochain_rdv": "2021-06-23 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, - "internal_id": "587", + "appointment_count": 1, + "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -186,7 +158,7 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 08:50:00", + "prochain_rdv": "2021-06-29 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 22, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-07-03 09:15:00", + "prochain_rdv": "2021-07-03 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 43, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -226,27 +198,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "address": "Erik Dahlbergsvägen 30", "business_hours": null, - "phone_number": "0455-73 54 30" + "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-08 14:05:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "581", + "appointment_count": 0, + "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -254,9 +228,7 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "10", "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", @@ -371,24 +343,24 @@ }, { "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Rösjövägen 10", + "address": "Kungsgatan 44", "business_hours": null, - "phone_number": "0454-73 31 00" + "phone_number": "0454-395 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "578", + "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -399,24 +371,24 @@ }, { "departement": "10", - "nom": "Olofströmskliniken, Olofström", + "nom": "Olofströms vårdcentral, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.531238346499302, - "latitude": 56.27719149748354, + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, "city": "Olofström", - "cp": "29334" + "cp": "00000" }, "metadata": { - "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", + "address": "Rösjövägen 10", "business_hours": null, - "phone_number": "0454-919 99" + "phone_number": "0454-73 31 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "593", + "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -564,6 +536,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From f3bc09b3c8536c3bf305f770ac5b9aa0e267b2f2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:22:06 +0000 Subject: [PATCH 0074/1182] Updating the times for Region 20 --- 20.json | 76 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/20.json b/20.json index fe9cd1b6dae..ff050246b44 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 12:54:57.833864+02:00", + "last_updated": "2021-06-08 13:22:06.280653+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 12:52:00", + "prochain_rdv": "2021-07-05 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2768, + "appointment_count": 2763, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Borlänge", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Borlänge", - "cp": "00000" - }, - "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-10 10:04:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2112", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Doktor.se / Falun", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 12:24:00", + "prochain_rdv": "2021-07-09 12:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 25, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 11:15:00", + "prochain_rdv": "2021-06-09 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 180, + "appointment_count": 182, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +133,7 @@ "prochain_rdv": "2021-06-14 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 62, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 11:15:00", + "prochain_rdv": "2021-06-16 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 74, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ } ], "centres_indisponibles": [ + { + "departement": "20", + "nom": "Doktor.se / Borlänge", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Borlänge", + "cp": "00000" + }, + "metadata": { + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2112", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Doktor.se / Mora", From 9964d9f0f6fe571206b034f676907aeaaab89310 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:22:37 +0000 Subject: [PATCH 0075/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 91181716659..b94525d1554 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 12:55:27.185620+02:00", + "last_updated": "2021-06-08 13:22:36.698911+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2bec25483e103e0f0ed4102d1f7e36059038742d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:23:05 +0000 Subject: [PATCH 0076/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 3b2079aeb72..a353d447447 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 12:55:57.426866+02:00", + "last_updated": "2021-06-08 13:23:04.804312+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 39f190a04ecbf0bca8afd2685fe729f49bf85be7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:23:34 +0000 Subject: [PATCH 0077/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 33bfae5aa23..d170b0ad4e0 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 12:56:25.632782+02:00", + "last_updated": "2021-06-08 13:23:33.709436+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5f77883ade0620371743363177e91b1c2559570e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:24:02 +0000 Subject: [PATCH 0078/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index a69fb0dfc9d..222df97c964 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 12:56:54.245756+02:00", + "last_updated": "2021-06-08 13:24:02.154823+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c3d232d050b78a341a392eac130b189401f1e247 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:27:29 +0000 Subject: [PATCH 0079/1182] Updating the times for Region 06 --- 06.json | 102 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/06.json b/06.json index d1bdfd7ed2f..92335977886 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:00:07.236028+02:00", + "last_updated": "2021-06-08 13:27:28.455103+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:35:00", + "prochain_rdv": "2021-06-23 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 99, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 18:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 108, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:24:00", + "prochain_rdv": "2021-06-23 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 56, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-24 10:48:00", + "prochain_rdv": "2021-06-24 10:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 36, "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,6 +115,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 54 00" + }, + "prochain_rdv": "2021-06-16 18:42:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1186", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", @@ -130,7 +158,7 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:12:00", + "prochain_rdv": "2021-06-22 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 58, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:12:00", + "prochain_rdv": "2021-06-23 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 69, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +242,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 11:30:00", + "prochain_rdv": "2021-06-30 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 35, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 19:48:00", + "prochain_rdv": "2021-06-23 19:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1662, + "appointment_count": 1650, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-10 13:08:00", + "prochain_rdv": "2021-06-22 14:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 333, + "appointment_count": 324, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:18:00", + "prochain_rdv": "2021-06-30 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 60, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-23 14:05:00", + "prochain_rdv": "2021-06-23 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 16, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,7 +410,7 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-17 15:30:00", + "prochain_rdv": "2021-06-17 14:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 114, @@ -410,10 +438,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-09 15:48:00", + "prochain_rdv": "2021-06-24 15:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 36, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -649,34 +677,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 54 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1186", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From c419a40972f7f8070d5708a0a71a11019970441b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:28:21 +0000 Subject: [PATCH 0080/1182] Updating the times for Region 08 --- 08.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08.json b/08.json index 77337022224..7b07018a54e 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:01:07.305260+02:00", + "last_updated": "2021-06-08 13:28:20.841646+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 4a872aaedf32b8a2318a5c670318f718e071da89 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:29:05 +0000 Subject: [PATCH 0081/1182] Updating the times for Region 07 --- 07.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/07.json b/07.json index 0fee5d40e44..fffcb9a3ec9 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:01:57.742586+02:00", + "last_updated": "2021-06-08 13:29:05.168416+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-08 13:15:00", + "prochain_rdv": "2021-06-12 10:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-11 09:25:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-09 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 62, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-08 13:12:00", + "prochain_rdv": "2021-06-16 10:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1190, + "appointment_count": 1155, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "07", - "nom": "Garvaren", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 13.9309756, - "latitude": 56.83242, - "city": "Ljungby", - "cp": "34160" - }, - "metadata": { - "address": "Stationsgatan 2, 341 60 Ljungby", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30000, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Nibehallen", From 5dcdff340dde12bf4e1ad2dd58df4eaa742d66a7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:29:33 +0000 Subject: [PATCH 0082/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 843c3b1025b..ec315f7646c 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:02:26.043325+02:00", + "last_updated": "2021-06-08 13:29:32.680767+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From bb56c9084d14e45caa50577470331463dc23635b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:30:01 +0000 Subject: [PATCH 0083/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index f98b7348931..e5df2cf569f 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:02:54.284838+02:00", + "last_updated": "2021-06-08 13:30:00.555841+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8a33a8cbba3249875d53df1d5ae73b4980279787 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:31:16 +0000 Subject: [PATCH 0084/1182] Updating the times for Region 04 --- 04.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/04.json b/04.json index e138d6e1db0..a53f15ba53c 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 13:04:11.701577+02:00", + "last_updated": "2021-06-08 13:31:16.069578+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-13 15:50:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Gnesta, Gnesta", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 10:25:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 55, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 14:50:00", + "prochain_rdv": "2021-06-22 14:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 32, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-07-06 18:55:00", + "prochain_rdv": "2021-06-22 19:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 618, + "appointment_count": 631, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 10:32:00", + "prochain_rdv": "2021-06-11 11:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5560, + "appointment_count": 5556, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Flen, Flen", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" - }, - "metadata": { - "address": "Götgatan 6, 642 37 Flen", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30005, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From 1a4b701f934eda726a4308d35748ba4bb43e97f6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:31:46 +0000 Subject: [PATCH 0085/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 7e25c18ff2a..421b53c878f 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:04:39.540025+02:00", + "last_updated": "2021-06-08 13:31:46.012721+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2ca1014484508cc00fa7345b25e7925af57f77e1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:32:15 +0000 Subject: [PATCH 0086/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index bace1832630..1c60a013437 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:05:09.058881+02:00", + "last_updated": "2021-06-08 13:32:15.138058+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1de5bd01b238d723af5c56221f2c9e8e29f98f12 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:32:46 +0000 Subject: [PATCH 0087/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index f172bed689f..2b97ca606a6 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:05:43.953803+02:00", + "last_updated": "2021-06-08 13:32:46.339323+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 14:35:00", + "prochain_rdv": "2021-06-17 14:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 161, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From f5ea01de5a7db70bf644e922040176aba7c04505 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:36:43 +0000 Subject: [PATCH 0088/1182] Updating the times for Region 22 --- 22.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/22.json b/22.json index 9fbc30cc425..1447a7b220f 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:09:56.063112+02:00", + "last_updated": "2021-06-08 13:36:42.750397+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-11 11:12:00", + "prochain_rdv": "2021-06-14 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5152, + "appointment_count": 5026, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 14:05:00", + "prochain_rdv": "2021-06-08 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 14, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 91, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:10:00", + "prochain_rdv": "2021-06-09 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 984, + "appointment_count": 945, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-21 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1036, + "appointment_count": 1035, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 13:10:00", + "prochain_rdv": "2021-06-08 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 407, + "appointment_count": 404, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From b7eb22e56cb55532c6ec6e37124bc774af97caa6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:37:14 +0000 Subject: [PATCH 0089/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index cd016970bb9..575fe8fb7bd 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:10:22.131891+02:00", + "last_updated": "2021-06-08 13:37:13.741488+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 98f8985d9042fb6bec56c3aa8fc4abf7e0a1cd93 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 11:44:10 +0000 Subject: [PATCH 0090/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index d85db9a98d0..aa3e9d3c10d 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 9, + "disponibles": 7, "total": 19, - "creneaux": 259 + "creneaux": 256 }, "20": { - "disponibles": 7, + "disponibles": 6, "total": 8, - "creneaux": 3120 + "creneaux": 3107 }, "09": { "disponibles": 0, @@ -30,9 +30,9 @@ "creneaux": 0 }, "06": { - "disponibles": 15, + "disponibles": 16, "total": 52, - "creneaux": 2840 + "creneaux": 2807 }, "08": { "disponibles": 0, @@ -40,9 +40,9 @@ "creneaux": 0 }, "07": { - "disponibles": 5, + "disponibles": 6, "total": 7, - "creneaux": 1302 + "creneaux": 1268 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 6268 + "creneaux": 6275 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 165 + "creneaux": 161 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 7671 + "creneaux": 7515 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 81, "total": 339, - "creneaux": 35702 + "creneaux": 35466 } } \ No newline at end of file From 50f83e3abe1bf9e6bd48a648ab61f2984f71edfe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:44:47 +0000 Subject: [PATCH 0091/1182] Updating the times for Region 10 --- 10.json | 94 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/10.json b/10.json index 471507c3fd3..fb01930ab84 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:21:20.795088+02:00", + "last_updated": "2021-06-08 13:44:46.713574+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-24 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 11, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -117,24 +117,24 @@ }, { "departement": "10", - "nom": "Olofströmskliniken, Olofström", + "nom": "Ronneby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.531238346499302, - "latitude": 56.27719149748354, - "city": "Olofström", - "cp": "29334" + "longitude": 15.269999654288354, + "latitude": 56.20695642418727, + "city": "Ronneby", + "cp": "00000" }, "metadata": { - "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", + "address": "Götgatan 29 E", "business_hours": null, - "phone_number": "0454-919 99" + "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-23 10:00:00", + "prochain_rdv": "2021-06-29 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "593", + "appointment_count": 19, + "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +145,24 @@ }, { "departement": "10", - "nom": "Ronneby vårdcentral", + "nom": "Samariten vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.269999654288354, - "latitude": 56.20695642418727, - "city": "Ronneby", - "cp": "00000" + "longitude": 14.851766499969292, + "latitude": 56.1871016915944, + "city": "Karlshamn", + "cp": "37480" }, "metadata": { - "address": "Götgatan 29 E", + "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", "business_hours": null, - "phone_number": "0457-73 14 00" + "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-29 09:10:00", + "prochain_rdv": "2021-07-03 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, - "internal_id": "579", + "appointment_count": 42, + "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +173,24 @@ }, { "departement": "10", - "nom": "Samariten vårdcentral, Karlshamn", + "nom": "Sölvesborgs vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.851766499969292, - "latitude": 56.1871016915944, - "city": "Karlshamn", - "cp": "37480" + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", + "cp": "00000" }, "metadata": { - "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", + "address": "Markgatan 30", "business_hours": null, - "phone_number": "0454-73 34 02" + "phone_number": "0456-73 13 10" }, - "prochain_rdv": "2021-07-03 09:00:00", + "prochain_rdv": "2021-06-24 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 43, - "internal_id": "577", + "appointment_count": 1, + "internal_id": "576", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -399,24 +399,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Olofströmskliniken, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" + "longitude": 14.531238346499302, + "latitude": 56.27719149748354, + "city": "Olofström", + "cp": "29334" }, "metadata": { - "address": "Movägen 4", + "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0454-919 99" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "585", + "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -427,24 +427,24 @@ }, { "departement": "10", - "nom": "Sölvesborgs vårdcentral", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Markgatan 30", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0456-73 13 10" + "phone_number": "0455-73 56 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "576", + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 0a384ed3ff4a27745915219f74a49cafbb8f0a8c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:45:30 +0000 Subject: [PATCH 0092/1182] Updating the times for Region 20 --- 20.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/20.json b/20.json index ff050246b44..f2139d4e5c8 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:22:06.280653+02:00", + "last_updated": "2021-06-08 13:45:30.425594+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 09:20:00", + "prochain_rdv": "2021-06-14 12:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2763, + "appointment_count": 2762, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 12:28:00", + "prochain_rdv": "2021-06-18 10:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 28, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 13:08:00", + "prochain_rdv": "2021-06-29 13:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-09 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 182, + "appointment_count": 181, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-14 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 63, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 11:25:00", + "prochain_rdv": "2021-06-15 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 74, + "appointment_count": 71, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 8d8f39a4dfd9c47a5863127e205c472539e65fc4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:45:56 +0000 Subject: [PATCH 0093/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index b94525d1554..a87e719b2c2 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:22:36.698911+02:00", + "last_updated": "2021-06-08 13:45:56.406160+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 955f6138b5c2d8154df36600e326279a93da4c85 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:46:26 +0000 Subject: [PATCH 0094/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index a353d447447..b2b438d8250 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:23:04.804312+02:00", + "last_updated": "2021-06-08 13:46:26.147445+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 89715e08642e60dba6d3b3d10a1c9b02524d3c3a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:46:54 +0000 Subject: [PATCH 0095/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index d170b0ad4e0..87ab7cd36cd 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:23:33.709436+02:00", + "last_updated": "2021-06-08 13:46:53.623635+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cce48ec2efc0af4eabae161aec41338e1ff4059f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:47:21 +0000 Subject: [PATCH 0096/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 222df97c964..229a93a9d08 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:24:02.154823+02:00", + "last_updated": "2021-06-08 13:47:20.695002+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9cbb58d70ee7ed2b050cb65771968e01da90ebee Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:50:45 +0000 Subject: [PATCH 0097/1182] Updating the times for Region 06 --- 06.json | 260 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 130 insertions(+), 130 deletions(-) diff --git a/06.json b/06.json index 92335977886..76dc6af9a88 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:27:28.455103+02:00", + "last_updated": "2021-06-08 13:50:44.611823+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 09:45:00", + "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 99, + "appointment_count": 98, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 18:40:00", + "prochain_rdv": "2021-06-22 19:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 104, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-23 14:24:00", + "prochain_rdv": "2021-06-24 10:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 56, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-24 10:57:00", + "prochain_rdv": "2021-06-24 11:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 12, "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,34 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 54 00" - }, - "prochain_rdv": "2021-06-16 18:42:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1186", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:20:00", + "prochain_rdv": "2021-06-22 12:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 60, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +161,7 @@ "prochain_rdv": "2021-06-23 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 66, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,6 +255,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": "2021-06-11 11:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Sävsjö vårdcentral", @@ -298,7 +298,7 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 14:08:00", + "prochain_rdv": "2021-06-10 13:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 324, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:15:00", + "prochain_rdv": "2021-06-30 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 58, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-23 14:10:00", + "prochain_rdv": "2021-06-09 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 20, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,6 +367,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": "2021-06-09 14:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": "2021-06-17 14:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -410,7 +466,7 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-17 14:50:00", + "prochain_rdv": "2021-06-23 16:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 114, @@ -441,7 +497,7 @@ "prochain_rdv": "2021-06-24 15:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 33, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -677,6 +733,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 54 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1186", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -789,34 +873,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1041,34 +1097,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", @@ -1153,34 +1181,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From eb61dc49668b95b1d8f4a22cc4ea624b8c91c464 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:51:43 +0000 Subject: [PATCH 0098/1182] Updating the times for Region 08 --- 08.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08.json b/08.json index 7b07018a54e..dd6c002ccd7 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:28:20.841646+02:00", + "last_updated": "2021-06-08 13:51:42.916143+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 6e7f654f5ce23a69d0ed2db36ce60d1ee9528bcd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:52:35 +0000 Subject: [PATCH 0099/1182] Updating the times for Region 07 --- 07.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/07.json b/07.json index fffcb9a3ec9..ec264d1cae7 100644 --- a/07.json +++ b/07.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 13:29:05.168416+02:00", + "last_updated": "2021-06-08 13:52:35.143884+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "07", - "nom": "Folkets Hus", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 14.5515003, - "latitude": 56.9011986, - "city": "Alvesta", - "cp": "34230" - }, - "metadata": { - "address": "Allbogatan 15, 342 30 Alvesta", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-12 10:00:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 29999, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Garvaren", @@ -46,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-11 09:25:00", + "prochain_rdv": "2021-06-10 08:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 3, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 08:50:00", + "prochain_rdv": "2021-06-15 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 5, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 09:00:00", + "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 41, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +133,7 @@ "prochain_rdv": "2021-06-16 10:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1155, + "appointment_count": 1148, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "07", + "nom": "Folkets Hus", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.5515003, + "latitude": 56.9011986, + "city": "Alvesta", + "cp": "34230" + }, + "metadata": { + "address": "Allbogatan 15, 342 30 Alvesta", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 29999, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Nibehallen", From 4a1dad35329db4aff1c5d43f5821330bb139c10a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:53:01 +0000 Subject: [PATCH 0100/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index ec315f7646c..8a4c225a881 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:29:32.680767+02:00", + "last_updated": "2021-06-08 13:53:00.824705+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2d9a97535bcaf75cac4584f44f7fe127316d4dfc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:53:26 +0000 Subject: [PATCH 0101/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index e5df2cf569f..854b7887f40 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:30:00.555841+02:00", + "last_updated": "2021-06-08 13:53:25.521893+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From aaa781ff7e88cca3451a6a9bd5954292a0a0f999 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:54:40 +0000 Subject: [PATCH 0102/1182] Updating the times for Region 04 --- 04.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/04.json b/04.json index a53f15ba53c..22ecad5e201 100644 --- a/04.json +++ b/04.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 13:31:16.069578+02:00", + "last_updated": "2021-06-08 13:54:39.666092+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "04", - "nom": "Vaccina Flen, Flen", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" - }, - "metadata": { - "address": "Götgatan 6, 642 37 Flen", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-13 15:50:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30005, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Gnesta, Gnesta", @@ -46,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-10 10:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 52, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 14:55:00", + "prochain_rdv": "2021-06-09 13:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 31, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-22 19:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 631, + "appointment_count": 616, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-11 11:32:00", + "prochain_rdv": "2021-06-17 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5556, + "appointment_count": 2770, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,6 +201,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From 1210955cb1ceee448402a9aa571c30eef5895c6e Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 11:54:41 +0000 Subject: [PATCH 0103/1182] Updating the stats --- data/output/stats.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index aa3e9d3c10d..975fa0a3d30 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 7, "total": 19, - "creneaux": 256 + "creneaux": 253 }, "20": { "disponibles": 6, "total": 8, - "creneaux": 3107 + "creneaux": 3106 }, "09": { "disponibles": 0, @@ -30,9 +30,9 @@ "creneaux": 0 }, "06": { - "disponibles": 16, + "disponibles": 18, "total": 52, - "creneaux": 2807 + "creneaux": 2780 }, "08": { "disponibles": 0, @@ -40,9 +40,9 @@ "creneaux": 0 }, "07": { - "disponibles": 6, + "disponibles": 5, "total": 7, - "creneaux": 1268 + "creneaux": 1259 }, "25": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 81, + "disponibles": 82, "total": 339, - "creneaux": 35466 + "creneaux": 35426 } } \ No newline at end of file From c8ac440e6cb330a9ce98d66775c2f4da2d536121 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:55:05 +0000 Subject: [PATCH 0104/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 421b53c878f..bc7095b6752 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:31:46.012721+02:00", + "last_updated": "2021-06-08 13:55:04.561997+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ce4dd84542785c54af1a0c0711c5ec76a0797296 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:55:13 +0000 Subject: [PATCH 0105/1182] Updating the times for Region 10 --- 10.json | 180 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/10.json b/10.json index fb01930ab84..f725ccf54e4 100644 --- a/10.json +++ b/10.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 13:44:46.713574+02:00", + "last_updated": "2021-06-08 13:55:13.403005+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "10", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Erik Dahlbergsvägen 30", + "business_hours": null, + "phone_number": "0454-73 27 00" + }, + "prochain_rdv": "2021-06-22 11:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "580", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Capio Citykliniken, Ronneby", @@ -87,6 +115,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": "2021-06-09 13:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -105,7 +161,7 @@ "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, + "appointment_count": 58, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +186,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 10:50:00", + "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 20, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-07-03 09:00:00", + "prochain_rdv": "2021-07-03 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 40, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -170,65 +226,9 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Sölvesborgs vårdcentral", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Markgatan 30", - "business_hours": null, - "phone_number": "0456-73 13 10" - }, - "prochain_rdv": "2021-06-24 10:30:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "576", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ - { - "departement": "10", - "nom": "Brunnsgårdens vårdcentral, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.86913980363779, - "latitude": 56.1714540982337, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Erik Dahlbergsvägen 30", - "business_hours": null, - "phone_number": "0454-73 27 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "580", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", @@ -341,34 +341,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Olofströms vårdcentral, Olofström", @@ -453,6 +425,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Sölvesborgs vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Markgatan 30", + "business_hours": null, + "phone_number": "0456-73 13 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "576", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Trossö vårdcentral, Karlskrona", From 053a5c7fc9615548defa22590c4473356b0ffa8f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:55:29 +0000 Subject: [PATCH 0106/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 1c60a013437..129504fcab2 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:32:15.138058+02:00", + "last_updated": "2021-06-08 13:55:29.085084+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 991962b56df0094cc19f214db35703a42d7b522e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:56:00 +0000 Subject: [PATCH 0107/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 2b97ca606a6..728f9888c5c 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:32:46.339323+02:00", + "last_updated": "2021-06-08 13:56:00.255963+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 14:35:00", + "prochain_rdv": "2021-06-17 14:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 161, + "appointment_count": 154, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 3bba6964187d8bd89055951b26e76b6d89442c1f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:56:04 +0000 Subject: [PATCH 0108/1182] Updating the times for Region 20 --- 20.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/20.json b/20.json index f2139d4e5c8..364cc80168a 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:45:30.425594+02:00", + "last_updated": "2021-06-08 13:56:03.605975+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 12:52:00", + "prochain_rdv": "2021-07-06 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2762, + "appointment_count": 2758, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-18 10:12:00", + "prochain_rdv": "2021-07-09 12:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 26, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-29 13:16:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:20:00", + "prochain_rdv": "2021-06-09 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 181, + "appointment_count": 180, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,7 +130,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 11:15:00", + "prochain_rdv": "2021-06-16 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 71, @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Doktor.se / Mora", From 4a93cf2ca4ada7874deb27443846b9ecd80f1a54 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:56:31 +0000 Subject: [PATCH 0109/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index a87e719b2c2..4f26696ed06 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:45:56.406160+02:00", + "last_updated": "2021-06-08 13:56:30.740510+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 97e8821a68ab1eee643e724efa1f00d56bc885f9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:56:57 +0000 Subject: [PATCH 0110/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index b2b438d8250..81b64a08dce 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:46:26.147445+02:00", + "last_updated": "2021-06-08 13:56:56.625037+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1fec943e79b28dd912d75526f23b37e869160676 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:57:24 +0000 Subject: [PATCH 0111/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 87ab7cd36cd..a3a00169298 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:46:53.623635+02:00", + "last_updated": "2021-06-08 13:57:23.574524+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5b15bffd17830a2539fe3b2f29a3d2b88132cba7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:57:51 +0000 Subject: [PATCH 0112/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 229a93a9d08..4f6eea339e1 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:47:20.695002+02:00", + "last_updated": "2021-06-08 13:57:51.372071+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 747356ccc1fcd6c175be9937f34fe6f6fdb45596 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 11:59:58 +0000 Subject: [PATCH 0113/1182] Updating the times for Region 22 --- 22.json | 132 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/22.json b/22.json index 1447a7b220f..8d73ab2f899 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 13:36:42.750397+02:00", + "last_updated": "2021-06-08 13:59:57.899328+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-08 15:21:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 13, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:39:00", + "prochain_rdv": "2021-06-14 09:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5026, + "appointment_count": 5068, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +74,7 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 14:00:00", + "prochain_rdv": "2021-06-21 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 14, @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 78, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,6 +115,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Härnösand", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", + "cp": "00000" + }, + "metadata": { + "address": "Södra vägen 3-5", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-09 13:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "1309", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Kramfors", @@ -105,7 +161,7 @@ "prochain_rdv": "2021-06-09 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 945, + "appointment_count": 933, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:36:00", + "prochain_rdv": "2021-06-21 09:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1035, + "appointment_count": 994, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +214,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 13:40:00", + "prochain_rdv": "2021-06-08 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 404, + "appointment_count": 402, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +229,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Härnösand", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.9298362078272, - "latitude": 62.62440429993568, - "city": "Härnösand", - "cp": "00000" - }, - "metadata": { - "address": "Södra vägen 3-5", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1309", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Junsele", From de4d4aecc0e36e9603ab8989162d79a5cd7a80cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:00:28 +0000 Subject: [PATCH 0114/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 575fe8fb7bd..7d22458120c 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:37:13.741488+02:00", + "last_updated": "2021-06-08 14:00:27.842750+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6786fb1b700eaef741099da5d79c26f2f96bad2a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:01:05 +0000 Subject: [PATCH 0115/1182] Updating the times for Region 06 --- 06.json | 142 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 71 insertions(+), 71 deletions(-) diff --git a/06.json b/06.json index 76dc6af9a88..0eae6fb0f70 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:50:44.611823+02:00", + "last_updated": "2021-06-08 14:01:05.075609+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-24 10:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 55, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-24 11:09:00", + "prochain_rdv": "2021-06-24 10:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 20, "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:16:00", + "prochain_rdv": "2021-06-22 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 56, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-06-22 15:45:00", + "prochain_rdv": "2021-06-23 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 57, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 10:20:00", + "prochain_rdv": "2021-06-30 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 35, + "appointment_count": 33, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -255,34 +255,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": "2021-06-11 11:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Sävsjö vårdcentral", @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-10 13:08:00", + "prochain_rdv": "2021-06-22 14:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 324, + "appointment_count": 318, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +301,7 @@ "prochain_rdv": "2021-06-30 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 56, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-09 10:45:00", + "prochain_rdv": "2021-06-23 08:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 12, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,34 +339,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": "2021-06-09 14:30:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", @@ -873,6 +817,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1097,6 +1069,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", From 1d513b50372d021ba5c9f13220c0a6c35f783928 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:02:00 +0000 Subject: [PATCH 0116/1182] Updating the times for Region 08 --- 08.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08.json b/08.json index dd6c002ccd7..b346b90b0d3 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:51:42.916143+02:00", + "last_updated": "2021-06-08 14:01:59.521535+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 4ec49062f234ba984378219cc71358274abf0704 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:02:48 +0000 Subject: [PATCH 0117/1182] Updating the times for Region 07 --- 07.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/07.json b/07.json index ec264d1cae7..f42fbf6fe55 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:52:35.143884+02:00", + "last_updated": "2021-06-08 14:02:47.623611+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-10 08:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-09 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 64, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:28:00", + "prochain_rdv": "2021-06-09 11:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1148, + "appointment_count": 1155, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 6d3e23bf31c6b5f2dcb1d54e8845510db98ca78b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:03:14 +0000 Subject: [PATCH 0118/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 8a4c225a881..3656ddc96af 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:53:00.824705+02:00", + "last_updated": "2021-06-08 14:03:13.922150+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2d9a86ffb9652767aec8f5c59270eb4a4f4c6194 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:03:41 +0000 Subject: [PATCH 0119/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 854b7887f40..8248e89d96d 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:53:25.521893+02:00", + "last_updated": "2021-06-08 14:03:41.019118+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5e60b74ee6f034ec03ba57dd4470d4d39ddc6b33 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:04:50 +0000 Subject: [PATCH 0120/1182] Updating the times for Region 04 --- 04.json | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/04.json b/04.json index 22ecad5e201..ff694bba108 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 13:54:39.666092+02:00", +======= + "last_updated": "2021-06-08 14:04:49.895476+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +25,11 @@ "prochain_rdv": "2021-06-10 10:45:00", "plateforme": "Vaccina", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 52, +======= + "appointment_count": 49, +>>>>>>> Stashed changes "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +82,14 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-22 19:00:00", + "prochain_rdv": "2021-06-08 19:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 616, +======= + "appointment_count": 629, +>>>>>>> Stashed changes "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +114,17 @@ "business_hours": null, "phone_number": "011-473 53 70" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-17 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2770, +======= + "prochain_rdv": "2021-06-15 11:56:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2774, +>>>>>>> Stashed changes "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From fc5089dcfdcbf76e5a8c893393bff962179541ee Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:05:19 +0000 Subject: [PATCH 0121/1182] Updating the times for Region 03 --- 03.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/03.json b/03.json index bc7095b6752..2a9aa7afb8f 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 13:55:04.561997+02:00", +======= + "last_updated": "2021-06-08 14:05:18.771390+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e5eda41941ec3c9f64b7b95eb6175ddc3e04cdfb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:05:47 +0000 Subject: [PATCH 0122/1182] Updating the times for Region 17 --- 17.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/17.json b/17.json index 129504fcab2..ef360b53203 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 13:55:29.085084+02:00", +======= + "last_updated": "2021-06-08 14:05:47.279332+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 784c9c7c6983afe7e24181dee37496ff9fcbe0ab Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:06:21 +0000 Subject: [PATCH 0123/1182] Updating the times for Region 24 --- 24.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/24.json b/24.json index 728f9888c5c..a7c3a2c8638 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 13:56:00.255963+02:00", +======= + "last_updated": "2021-06-08 14:06:20.986589+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +25,11 @@ "prochain_rdv": "2021-06-17 14:45:00", "plateforme": "Vaccina", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 154, +======= + "appointment_count": 150, +>>>>>>> Stashed changes "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 9c3909177cb0f9440fc6845d3ca6ac114694ae9f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:10:18 +0000 Subject: [PATCH 0124/1182] Updating the times for Region 22 --- 22.json | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 86 insertions(+), 11 deletions(-) diff --git a/22.json b/22.json index 8d73ab2f899..c0734924f05 100644 --- a/22.json +++ b/22.json @@ -1,11 +1,16 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 13:59:57.899328+02:00", +======= + "last_updated": "2021-06-08 14:10:17.607468+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { "departement": "22", "nom": "Vaccinationsenhet Bollsta", +<<<<<<< Updated upstream "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { "longitude": 17.6703668135133, @@ -34,23 +39,33 @@ { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", +======= +>>>>>>> Stashed changes "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 18.73309939643111, - "latitude": 63.29646278008092, - "city": "Örnsköldsvik", + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", "cp": "00000" }, "metadata": { - "address": "Valhallavägen 20, Örnsköldsvik", + "address": "Bollsta Folketspark, Tunsjövägen 4", "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-14 09:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 5068, "internal_id": "1514", +======= + "prochain_rdv": "2021-06-08 15:21:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 13, + "internal_id": "1321", +>>>>>>> Stashed changes "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +76,28 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Fränsta", + "nom": "Vaccinationsenhet Curlinghallen Skyttis", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", + "longitude": 18.73309939643111, + "latitude": 63.29646278008092, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Mårtensvägen 2, Fränsta", + "address": "Valhallavägen 20, Örnsköldsvik", "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-21 14:05:00", +======= + "prochain_rdv": "2021-06-11 10:30:00", +>>>>>>> Stashed changes "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", + "appointment_count": 5054, + "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -130,10 +149,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-09 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 14, +======= + "prochain_rdv": "2021-06-21 08:15:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1162, +>>>>>>> Stashed changes "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +187,11 @@ "prochain_rdv": "2021-06-09 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 933, +======= + "appointment_count": 908, +>>>>>>> Stashed changes "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +216,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-21 09:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 994, +======= + "prochain_rdv": "2021-06-21 09:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 966, +>>>>>>> Stashed changes "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +251,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-08 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 402, +======= + "prochain_rdv": "2021-06-08 14:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 401, +>>>>>>> Stashed changes "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -231,6 +275,37 @@ "centres_indisponibles": [ { "departement": "22", +<<<<<<< Updated upstream +======= + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", +>>>>>>> Stashed changes "nom": "Vaccinationsenhet Församlingshemmet Björna", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { From 587890d16374983d37e949c44ed977bb5fa59fe4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:10:49 +0000 Subject: [PATCH 0125/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index 7d22458120c..725e215fe61 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-08 14:00:27.842750+02:00", +======= + "last_updated": "2021-06-08 14:10:48.973112+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ba71aa6e899f6d0c528734dba3b1b669e7f482a2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:31:23 +0000 Subject: [PATCH 0126/1182] Updating the times for Region 10 --- 10.json | 140 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/10.json b/10.json index f725ccf54e4..f563ed95f5b 100644 --- a/10.json +++ b/10.json @@ -1,28 +1,28 @@ { "version": 1, - "last_updated": "2021-06-08 13:55:13.403005+02:00", + "last_updated": "2021-06-08 14:31:23.181941+02:00", "last_scrap": [], "centres_disponibles": [ { "departement": "10", - "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "nom": "Capio Citykliniken, Ronneby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.86913980363779, - "latitude": 56.1714540982337, - "city": "Karlshamn", + "longitude": 15.285538967170696, + "latitude": 56.20298130606912, + "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Erik Dahlbergsvägen 30", + "address": "Fridhemsvägen 15", "business_hours": null, - "phone_number": "0454-73 27 00" + "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-22 11:50:00", + "prochain_rdv": "2021-06-22 08:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "580", + "appointment_count": 105, + "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -33,24 +33,24 @@ }, { "departement": "10", - "nom": "Capio Citykliniken, Ronneby", + "nom": "Hälsohuset för alla", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.285538967170696, - "latitude": 56.20298130606912, - "city": "Ronneby", + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Fridhemsvägen 15", + "address": "Västra Vittusgatan 4", "business_hours": null, - "phone_number": "0457-340 70" + "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-22 08:00:00", + "prochain_rdv": "2021-06-09 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 106, - "internal_id": "591", + "appointment_count": 11, + "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-23 10:20:00", + "prochain_rdv": "2021-06-16 16:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 18, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,34 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": "2021-06-09 13:25:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -161,7 +133,7 @@ "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 59, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +161,7 @@ "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 22, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +189,7 @@ "prochain_rdv": "2021-07-03 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 39, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -231,26 +203,26 @@ "centres_indisponibles": [ { "departement": "10", - "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.116567592895079, - "latitude": 56.227310913111644, - "city": "Ronneby", + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Parkvägen 4", + "address": "Erik Dahlbergsvägen 30", "business_hours": null, - "phone_number": "0457-73 18 20" + "phone_number": "0454-73 27 00" }, "prochain_rdv": null, - "plateforme": null, + "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": null, + "internal_id": "580", "vaccine_type": null, - "appointment_by_phone_only": true, + "appointment_by_phone_only": false, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, @@ -259,26 +231,26 @@ }, { "departement": "10", - "nom": "Hälsohuset för alla", + "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", + "longitude": 15.116567592895079, + "latitude": 56.227310913111644, + "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Västra Vittusgatan 4", + "address": "Parkvägen 4", "business_hours": null, - "phone_number": "0455-35 55 00" + "phone_number": "0457-73 18 20" }, "prochain_rdv": null, - "plateforme": "MittVaccin", + "plateforme": null, "type": "vaccination-center", "appointment_count": 0, - "internal_id": "596", + "internal_id": null, "vaccine_type": null, - "appointment_by_phone_only": false, + "appointment_by_phone_only": true, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, @@ -341,6 +313,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Olofströms vårdcentral, Olofström", From bc13250971e84252cf27bd6f0cd2e3e081b0f4c3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:32:14 +0000 Subject: [PATCH 0127/1182] Updating the times for Region 20 --- 20.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/20.json b/20.json index 364cc80168a..717f40bbcc6 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:56:03.605975+02:00", + "last_updated": "2021-06-08 14:32:13.746471+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-06 10:40:00", + "prochain_rdv": "2021-07-01 15:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2758, + "appointment_count": 2762, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 12:28:00", + "prochain_rdv": "2021-07-09 12:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 25, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:25:00", + "prochain_rdv": "2021-06-15 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 180, + "appointment_count": 177, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 11:20:00", + "prochain_rdv": "2021-06-22 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 71, + "appointment_count": 68, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From fcbb6e5b4d5e6453ef1142d7fa4842d197c8bb5a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:32:42 +0000 Subject: [PATCH 0128/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 4f26696ed06..002b81d40ed 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:56:30.740510+02:00", + "last_updated": "2021-06-08 14:32:41.363010+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 77205a65d4df02f6b3c22ed38d00547e3624360b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:33:15 +0000 Subject: [PATCH 0129/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 81b64a08dce..bfd27d5d301 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:56:56.625037+02:00", + "last_updated": "2021-06-08 14:33:14.703777+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e45b2614d3796673244fcc18b05dd45bd18da1a4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:33:44 +0000 Subject: [PATCH 0130/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index a3a00169298..f8d3d34471c 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:57:23.574524+02:00", + "last_updated": "2021-06-08 14:33:43.650338+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5c4c995376c51d8078f8bad9a467530ef788555c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:34:14 +0000 Subject: [PATCH 0131/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 4f6eea339e1..2c9b8f02897 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 13:57:51.372071+02:00", + "last_updated": "2021-06-08 14:34:13.670663+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 38fa6a532de407a654ed5c152971eb8785730fbb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:37:26 +0000 Subject: [PATCH 0132/1182] Updating the times for Region 06 --- 06.json | 154 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 77 insertions(+), 77 deletions(-) diff --git a/06.json b/06.json index 0eae6fb0f70..ea4d7bba8b9 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:01:05.075609+02:00", + "last_updated": "2021-06-08 14:37:25.694268+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 98, + "appointment_count": 97, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:05:00", + "prochain_rdv": "2021-06-22 19:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 104, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:18:00", + "prochain_rdv": "2021-06-24 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 54, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-24 10:57:00", + "prochain_rdv": "2021-06-24 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 20, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:20:00", + "prochain_rdv": "2021-06-18 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 56, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 13:27:00", + "prochain_rdv": "2021-06-23 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 63, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-06-23 08:45:00", + "prochain_rdv": "2021-06-24 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 57, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 15:00:00", + "prochain_rdv": "2021-06-30 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 34, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-23 19:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1650, + "appointment_count": 1646, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:18:00", + "prochain_rdv": "2021-06-30 13:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 54, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,62 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vetlanda vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 15.081352462610193, - "latitude": 57.432375422981, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Norrvägen 2 B, Vetlanda", - "business_hours": null, - "phone_number": "010-243 20 10" - }, - "prochain_rdv": "2021-06-23 08:30:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 12, - "internal_id": "2050", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": "2021-06-17 14:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -382,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 14:22:00", + "prochain_rdv": "2021-06-29 10:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 84, + "appointment_count": 66, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-23 16:50:00", + "prochain_rdv": "2021-06-29 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 112, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +382,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 15:04:00", + "prochain_rdv": "2021-06-24 15:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 30, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -1041,6 +985,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vetlanda vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Norrvägen 2 B, Vetlanda", + "business_hours": null, + "phone_number": "010-243 20 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2050", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", @@ -1181,6 +1153,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From e2f5a937e99f075e253d7d584b6f40c3fbae1027 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:38:16 +0000 Subject: [PATCH 0133/1182] Updating the times for Region 08 --- 08.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08.json b/08.json index b346b90b0d3..dc9062d86a7 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:01:59.521535+02:00", + "last_updated": "2021-06-08 14:38:15.913392+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From fc952a999f4436d792b8bf60612988303107ef8b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:39:09 +0000 Subject: [PATCH 0134/1182] Updating the times for Region 07 --- 07.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/07.json b/07.json index f42fbf6fe55..3cbcb9f8f2c 100644 --- a/07.json +++ b/07.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 14:02:47.623611+02:00", + "last_updated": "2021-06-08 14:39:08.502790+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "07", - "nom": "Garvaren", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 13.9309756, - "latitude": 56.83242, - "city": "Ljungby", - "cp": "34160" - }, - "metadata": { - "address": "Stationsgatan 2, 341 60 Ljungby", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-10 08:30:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": 30000, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:30:00", + "prochain_rdv": "2021-06-08 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 63, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 41, + "appointment_count": 42, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +105,7 @@ "prochain_rdv": "2021-06-09 11:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1155, + "appointment_count": 1148, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Nibehallen", From 7b4228e0b788ea28d5282df84d1b346f1e17de18 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:39:39 +0000 Subject: [PATCH 0135/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 3656ddc96af..7f5c51ea2aa 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:03:13.922150+02:00", + "last_updated": "2021-06-08 14:39:38.649136+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From fc2a81d230903b815f744d1a06837e302ca77b44 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:40:05 +0000 Subject: [PATCH 0136/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 8248e89d96d..f9e36a3c336 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:03:41.019118+02:00", + "last_updated": "2021-06-08 14:40:05.193822+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 46a7653b82d27d708bb16c47e5fb26643110511d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:41:20 +0000 Subject: [PATCH 0137/1182] Updating the times for Region 04 --- 04.json | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/04.json b/04.json index ff694bba108..aebed675e1e 100644 --- a/04.json +++ b/04.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 13:54:39.666092+02:00", -======= - "last_updated": "2021-06-08 14:04:49.895476+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 14:41:19.797737+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -25,11 +21,7 @@ "prochain_rdv": "2021-06-10 10:45:00", "plateforme": "Vaccina", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 52, -======= - "appointment_count": 49, ->>>>>>> Stashed changes + "appointment_count": 50, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -54,7 +46,7 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-09 13:55:00", + "prochain_rdv": "2021-06-13 13:55:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 31, @@ -85,11 +77,7 @@ "prochain_rdv": "2021-06-08 19:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 616, -======= - "appointment_count": 629, ->>>>>>> Stashed changes + "appointment_count": 610, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -114,17 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-17 10:36:00", + "prochain_rdv": "2021-06-17 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2770, -======= - "prochain_rdv": "2021-06-15 11:56:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2774, ->>>>>>> Stashed changes "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 85f5c74e64c4c2bbb55e19306740a01a24ec27a0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:41:44 +0000 Subject: [PATCH 0138/1182] Updating the times for Region 03 --- 03.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/03.json b/03.json index 2a9aa7afb8f..1204d72f0b2 100644 --- a/03.json +++ b/03.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 13:55:04.561997+02:00", -======= - "last_updated": "2021-06-08 14:05:18.771390+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 14:41:44.245277+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 58e81ec798fe2be21e36f0f76589687e41b9025b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:42:14 +0000 Subject: [PATCH 0139/1182] Updating the times for Region 17 --- 17.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/17.json b/17.json index ef360b53203..8489248f8aa 100644 --- a/17.json +++ b/17.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 13:55:29.085084+02:00", -======= - "last_updated": "2021-06-08 14:05:47.279332+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 14:42:14.308977+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b17a6c3728e0b9290ac52b3a2c1064f080a09854 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:42:44 +0000 Subject: [PATCH 0140/1182] Updating the times for Region 24 --- 24.json | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/24.json b/24.json index a7c3a2c8638..3e7305290cc 100644 --- a/24.json +++ b/24.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 13:56:00.255963+02:00", -======= - "last_updated": "2021-06-08 14:06:20.986589+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 14:42:44.233765+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -25,11 +21,7 @@ "prochain_rdv": "2021-06-17 14:45:00", "plateforme": "Vaccina", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 154, -======= - "appointment_count": 150, ->>>>>>> Stashed changes + "appointment_count": 144, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From e09ff0c3816187f30536f9c90f1feac3d82d3a40 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:46:55 +0000 Subject: [PATCH 0141/1182] Updating the times for Region 22 --- 22.json | 153 +++++++++++++++----------------------------------------- 1 file changed, 39 insertions(+), 114 deletions(-) diff --git a/22.json b/22.json index c0734924f05..21b33316b7f 100644 --- a/22.json +++ b/22.json @@ -1,79 +1,8 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 13:59:57.899328+02:00", -======= - "last_updated": "2021-06-08 14:10:17.607468+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 14:46:54.704974+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", -<<<<<<< Updated upstream - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-08 15:21:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 13, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "22", - "nom": "Vaccinationsenhet Curlinghallen Skyttis", -======= ->>>>>>> Stashed changes - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-14 09:27:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 5068, - "internal_id": "1514", -======= - "prochain_rdv": "2021-06-08 15:21:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 13, - "internal_id": "1321", ->>>>>>> Stashed changes - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -89,14 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-21 14:05:00", -======= - "prochain_rdv": "2021-06-11 10:30:00", ->>>>>>> Stashed changes + "prochain_rdv": "2021-06-14 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5054, + "appointment_count": 5040, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -124,7 +49,7 @@ "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 91, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -149,17 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-09 13:20:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, -======= "prochain_rdv": "2021-06-21 08:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1162, ->>>>>>> Stashed changes + "appointment_count": 1176, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -184,14 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:25:00", + "prochain_rdv": "2021-06-08 15:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 933, -======= - "appointment_count": 908, ->>>>>>> Stashed changes + "appointment_count": 893, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -216,17 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-21 09:42:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 994, -======= - "prochain_rdv": "2021-06-21 09:45:00", + "prochain_rdv": "2021-06-21 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 966, ->>>>>>> Stashed changes + "appointment_count": 938, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -251,17 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-08 14:00:00", + "prochain_rdv": "2021-06-08 14:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 402, -======= - "prochain_rdv": "2021-06-08 14:10:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 401, ->>>>>>> Stashed changes + "appointment_count": 397, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -275,8 +175,34 @@ "centres_indisponibles": [ { "departement": "22", -<<<<<<< Updated upstream -======= + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", "nom": "Vaccinationsenhet Fränsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { @@ -305,7 +231,6 @@ }, { "departement": "22", ->>>>>>> Stashed changes "nom": "Vaccinationsenhet Församlingshemmet Björna", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { From e4fb683903fcd2739d57c5dfe05ab5c3b84f7ab0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 12:47:23 +0000 Subject: [PATCH 0142/1182] Updating the times for Region 19 --- 19.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/19.json b/19.json index 725e215fe61..10bdf4124de 100644 --- a/19.json +++ b/19.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-08 14:00:27.842750+02:00", -======= - "last_updated": "2021-06-08 14:10:48.973112+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-08 14:47:23.065374+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9250a9b059926eca9be2be6cd236aaac01ead986 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 13:20:33 +0000 Subject: [PATCH 0143/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 975fa0a3d30..35ae7f8bb35 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 7, "total": 19, - "creneaux": 253 + "creneaux": 265 }, "20": { - "disponibles": 6, + "disponibles": 5, "total": 8, - "creneaux": 3106 + "creneaux": 3095 }, "09": { "disponibles": 0, @@ -30,9 +30,9 @@ "creneaux": 0 }, "06": { - "disponibles": 18, + "disponibles": 14, "total": 52, - "creneaux": 2780 + "creneaux": 2711 }, "08": { "disponibles": 0, @@ -40,9 +40,9 @@ "creneaux": 0 }, "07": { - "disponibles": 5, + "disponibles": 4, "total": 7, - "creneaux": 1259 + "creneaux": 1258 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 6275 + "creneaux": 3461 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 161 + "creneaux": 144 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 7515 + "creneaux": 8535 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 82, + "disponibles": 75, "total": 339, - "creneaux": 35426 + "creneaux": 33546 } } \ No newline at end of file From 859b316d5bcfa304e17aa731c032e3ddd545c5d3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 13:21:09 +0000 Subject: [PATCH 0144/1182] Updating the times for Region 10 --- 10.json | 268 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 134 insertions(+), 134 deletions(-) diff --git a/10.json b/10.json index f563ed95f5b..b8d30910eb0 100644 --- a/10.json +++ b/10.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 14:31:23.181941+02:00", + "last_updated": "2021-06-08 15:21:08.456827+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "10", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Erik Dahlbergsvägen 30", + "business_hours": null, + "phone_number": "0454-73 27 00" + }, + "prochain_rdv": "2021-06-22 11:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "580", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Capio Citykliniken, Ronneby", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-22 08:00:00", + "prochain_rdv": "2021-06-10 14:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 105, + "appointment_count": 107, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-09 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 9, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -61,24 +89,24 @@ }, { "departement": "10", - "nom": "Kallinge vårdcentral", + "nom": "Jämjö vårdcentral, Jämjö", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.287394061779889, - "latitude": 56.2469606234693, - "city": "Ronneby", + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Gjutarevägen 1-3 Kallinge", + "address": "Hammarbyvägen 6", "business_hours": null, - "phone_number": "0457-73 17 90" + "phone_number": "0455-73 56 00" }, - "prochain_rdv": "2021-06-16 16:40:00", + "prochain_rdv": "2021-06-10 15:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, - "internal_id": "583", + "appointment_count": 1, + "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +117,24 @@ }, { "departement": "10", - "nom": "Lyckeby vårdcentral, Lyckeby", + "nom": "Kallinge vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.649367373459722, - "latitude": 56.19862527581323, - "city": "Karlskrona", + "longitude": 15.287394061779889, + "latitude": 56.2469606234693, + "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Källevägen 12", + "address": "Gjutarevägen 1-3 Kallinge", "business_hours": null, - "phone_number": "0455-73 55 00" + "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-24 14:15:00", + "prochain_rdv": "2021-06-16 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, - "internal_id": "584", + "appointment_count": 17, + "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +145,24 @@ }, { "departement": "10", - "nom": "Nättraby vårdcentral", + "nom": "Lyckeby vårdcentral, Lyckeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.536557149787294, - "latitude": 56.20188840773274, + "longitude": 15.649367373459722, + "latitude": 56.19862527581323, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kyrkvägen 16", + "address": "Källevägen 12", "business_hours": null, - "phone_number": "0455-73 57 20" + "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-22 10:40:00", + "prochain_rdv": "2021-06-24 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, - "internal_id": "587", + "appointment_count": 11, + "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +173,24 @@ }, { "departement": "10", - "nom": "Ronneby vårdcentral", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.269999654288354, - "latitude": 56.20695642418727, - "city": "Ronneby", + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Götgatan 29 E", + "address": "Kungsgatan 44", "business_hours": null, - "phone_number": "0457-73 14 00" + "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-29 08:50:00", + "prochain_rdv": "2021-06-09 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, - "internal_id": "579", + "appointment_count": 1, + "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +201,24 @@ }, { "departement": "10", - "nom": "Samariten vårdcentral, Karlshamn", + "nom": "Nättraby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.851766499969292, - "latitude": 56.1871016915944, - "city": "Karlshamn", - "cp": "37480" + "longitude": 15.536557149787294, + "latitude": 56.20188840773274, + "city": "Karlskrona", + "cp": "00000" }, "metadata": { - "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", + "address": "Kyrkvägen 16", "business_hours": null, - "phone_number": "0454-73 34 02" + "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-07-03 10:15:00", + "prochain_rdv": "2021-06-16 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, - "internal_id": "577", + "appointment_count": 60, + "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -198,29 +226,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "10", - "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "nom": "Olofströms vårdcentral, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.86913980363779, - "latitude": 56.1714540982337, - "city": "Karlshamn", + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", "cp": "00000" }, "metadata": { - "address": "Erik Dahlbergsvägen 30", + "address": "Rösjövägen 10", "business_hours": null, - "phone_number": "0454-73 27 00" + "phone_number": "0454-73 31 00" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-17 15:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "580", + "appointment_count": 1, + "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -231,26 +257,26 @@ }, { "departement": "10", - "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", + "nom": "Ronneby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.116567592895079, - "latitude": 56.227310913111644, + "longitude": 15.269999654288354, + "latitude": 56.20695642418727, "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Parkvägen 4", + "address": "Götgatan 29 E", "business_hours": null, - "phone_number": "0457-73 18 20" + "phone_number": "0457-73 14 00" }, - "prochain_rdv": null, - "plateforme": null, + "prochain_rdv": "2021-06-09 11:30:00", + "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": null, + "appointment_count": 23, + "internal_id": "579", "vaccine_type": null, - "appointment_by_phone_only": true, + "appointment_by_phone_only": false, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, @@ -259,24 +285,24 @@ }, { "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Hammarbyvägen 6", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0455-73 56 00" + "phone_number": "0455-73 56 55" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-09 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "575", + "appointment_count": 1, + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -287,24 +313,24 @@ }, { "departement": "10", - "nom": "Kungsmarkens vårdcentral, Karlskrona", + "nom": "Samariten vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.622468264447424, - "latitude": 56.19424140502793, - "city": "Karlskrona", - "cp": "00000" + "longitude": 14.851766499969292, + "latitude": 56.1871016915944, + "city": "Karlshamn", + "cp": "37480" }, "metadata": { - "address": "Kungsmarksplan 3", + "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", "business_hours": null, - "phone_number": "0455-61 94 00" + "phone_number": "0454-73 34 02" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-19 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "595", + "appointment_count": 100, + "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -312,29 +338,31 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 15.116567592895079, + "latitude": 56.227310913111644, + "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Parkvägen 4", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0457-73 18 20" }, "prochain_rdv": null, - "plateforme": "MittVaccin", + "plateforme": null, "type": "vaccination-center", "appointment_count": 0, - "internal_id": "592", + "internal_id": null, "vaccine_type": null, - "appointment_by_phone_only": false, + "appointment_by_phone_only": true, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, @@ -343,24 +371,24 @@ }, { "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", + "nom": "Kungsmarkens vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", + "longitude": 15.622468264447424, + "latitude": 56.19424140502793, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Rösjövägen 10", + "address": "Kungsmarksplan 3", "business_hours": null, - "phone_number": "0454-73 31 00" + "phone_number": "0455-61 94 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "578", + "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -397,34 +425,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From cfa7cb0a684112e51a813cfde55bd371dddc5e72 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 14:01:18 +0000 Subject: [PATCH 0145/1182] Updating the stats --- data/output/stats.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 35ae7f8bb35..5e04f60287d 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,8 +1,8 @@ { "10": { - "disponibles": 7, + "disponibles": 12, "total": 19, - "creneaux": 265 + "creneaux": 335 }, "20": { "disponibles": 5, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 75, + "disponibles": 80, "total": 339, - "creneaux": 33546 + "creneaux": 33616 } } \ No newline at end of file From e0bb0a0ee8ef0ec7861a365e41983bfd996fbab1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:37:56 +0000 Subject: [PATCH 0146/1182] Updating the times for Region 10 --- 10.json | 210 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 105 insertions(+), 105 deletions(-) diff --git a/10.json b/10.json index b8d30910eb0..646c63ef211 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 15:21:08.456827+02:00", + "last_updated": "2021-06-08 16:37:56.456165+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 11:10:00", + "prochain_rdv": "2021-06-22 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 8, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-10 14:55:00", + "prochain_rdv": "2021-06-10 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 111, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-09 09:30:00", + "prochain_rdv": "2021-06-09 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 7, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Hammarbyvägen 6", - "business_hours": null, - "phone_number": "0455-73 56 00" - }, - "prochain_rdv": "2021-06-10 15:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "575", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 14:15:00", + "prochain_rdv": "2021-06-10 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 17, + "appointment_count": 24, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-09 13:25:00", + "prochain_rdv": "2021-06-15 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-17 15:50:00", + "prochain_rdv": "2021-06-17 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 25, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,24 +229,24 @@ }, { "departement": "10", - "nom": "Ronneby vårdcentral", + "nom": "Olofströmskliniken, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.269999654288354, - "latitude": 56.20695642418727, - "city": "Ronneby", - "cp": "00000" + "longitude": 14.531238346499302, + "latitude": 56.27719149748354, + "city": "Olofström", + "cp": "29334" }, "metadata": { - "address": "Götgatan 29 E", + "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", "business_hours": null, - "phone_number": "0457-73 14 00" + "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-09 11:30:00", + "prochain_rdv": "2021-06-16 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, - "internal_id": "579", + "appointment_count": 3, + "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -285,24 +257,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Ronneby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", + "longitude": 15.269999654288354, + "latitude": 56.20695642418727, + "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Movägen 4", + "address": "Götgatan 29 E", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-09 15:05:00", + "prochain_rdv": "2021-06-09 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "585", + "appointment_count": 28, + "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 08:45:00", + "prochain_rdv": "2021-06-19 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 100, + "appointment_count": 102, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -338,31 +310,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "10", - "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", + "nom": "Sölvesborgs vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.116567592895079, - "latitude": 56.227310913111644, - "city": "Ronneby", + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Parkvägen 4", + "address": "Markgatan 30", "business_hours": null, - "phone_number": "0457-73 18 20" + "phone_number": "0456-73 13 10" }, - "prochain_rdv": null, - "plateforme": null, + "prochain_rdv": "2021-06-23 13:25:00", + "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": null, + "appointment_count": 2, + "internal_id": "576", "vaccine_type": null, - "appointment_by_phone_only": true, + "appointment_by_phone_only": false, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, @@ -371,24 +341,24 @@ }, { "departement": "10", - "nom": "Kungsmarkens vårdcentral, Karlskrona", + "nom": "Trossö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.622468264447424, - "latitude": 56.19424140502793, + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kungsmarksplan 3", + "address": "Fortifikationsgatan 9, Karlskrona", "business_hours": null, - "phone_number": "0455-61 94 00" + "phone_number": "0455-73 57 55" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "595", + "appointment_count": 1, + "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -396,27 +366,57 @@ "request_counts": null, "appointment_schedules": [], "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "10", + "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.116567592895079, + "latitude": 56.227310913111644, + "city": "Ronneby", + "cp": "00000" + }, + "metadata": { + "address": "Parkvägen 4", + "business_hours": null, + "phone_number": "0457-73 18 20" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null }, { "departement": "10", - "nom": "Olofströmskliniken, Olofström", + "nom": "Jämjö vårdcentral, Jämjö", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.531238346499302, - "latitude": 56.27719149748354, - "city": "Olofström", - "cp": "29334" + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", + "cp": "00000" }, "metadata": { - "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", + "address": "Hammarbyvägen 6", "business_hours": null, - "phone_number": "0454-919 99" + "phone_number": "0455-73 56 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "593", + "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -427,24 +427,24 @@ }, { "departement": "10", - "nom": "Sölvesborgs vårdcentral", + "nom": "Kungsmarkens vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", + "longitude": 15.622468264447424, + "latitude": 56.19424140502793, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Markgatan 30", + "address": "Kungsmarksplan 3", "business_hours": null, - "phone_number": "0456-73 13 10" + "phone_number": "0455-61 94 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "576", + "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -455,24 +455,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0455-73 56 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "586", + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 02f8eca4cf039e239bae40f12bede9403623243b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:38:46 +0000 Subject: [PATCH 0147/1182] Updating the times for Region 20 --- 20.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/20.json b/20.json index 717f40bbcc6..d90a3085792 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:32:13.746471+02:00", + "last_updated": "2021-06-08 16:38:45.647710+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 15:56:00", + "prochain_rdv": "2021-07-05 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2762, + "appointment_count": 2763, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 12:36:00", + "prochain_rdv": "2021-07-02 14:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, - "internal_id": "2111", + "appointment_count": 1, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 11:15:00", + "prochain_rdv": "2021-07-07 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 177, - "internal_id": "2102", + "appointment_count": 22, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 11:25:00", + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, - "internal_id": "2101", + "appointment_count": 183, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +117,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-22 11:15:00", + "prochain_rdv": "2021-06-14 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 68, - "internal_id": "2103", + "appointment_count": 60, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -142,29 +142,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-22 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 63, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -172,7 +170,9 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", "nom": "Doktor.se / Ludvika", From a5f8f043820021d5711df18a3e975f7d971e84d0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:39:16 +0000 Subject: [PATCH 0148/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 002b81d40ed..0a1e0a049a3 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:32:41.363010+02:00", + "last_updated": "2021-06-08 16:39:16.317855+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e4b74ce31d7698d5e3cf3e1a1050c309b4cb5023 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:39:46 +0000 Subject: [PATCH 0149/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index bfd27d5d301..8a47066c22a 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:33:14.703777+02:00", + "last_updated": "2021-06-08 16:39:46.236350+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From dfd309e4d2a8dcaa4aa8109a407445e317f618b8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:40:16 +0000 Subject: [PATCH 0150/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index f8d3d34471c..3f2012d5aa4 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:33:43.650338+02:00", + "last_updated": "2021-06-08 16:40:15.442420+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6a8aa9fd249f313f750355df6684cf869b4536a3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:40:45 +0000 Subject: [PATCH 0151/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 2c9b8f02897..654af1c5eda 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:34:13.670663+02:00", + "last_updated": "2021-06-08 16:40:44.730252+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d24cd449188b4fc7e971942b9026cb51d7c05916 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:44:15 +0000 Subject: [PATCH 0152/1182] Updating the times for Region 06 --- 06.json | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/06.json b/06.json index ea4d7bba8b9..e13542ca570 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:37:25.694268+02:00", + "last_updated": "2021-06-08 16:44:14.759564+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:35:00", + "prochain_rdv": "2021-06-16 11:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 97, + "appointment_count": 93, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:10:00", + "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 104, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:24:00", + "prochain_rdv": "2021-06-24 09:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 54, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-24 11:12:00", + "prochain_rdv": "2021-06-23 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 4, "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-18 09:20:00", + "prochain_rdv": "2021-06-22 12:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 30, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:09:00", + "prochain_rdv": "2021-06-24 15:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 57, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-06-24 10:55:00", + "prochain_rdv": "2021-06-24 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 48, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-30 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 33, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 19:51:00", + "prochain_rdv": "2021-06-23 18:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1646, + "appointment_count": 1650, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 14:08:00", + "prochain_rdv": "2021-06-22 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 318, + "appointment_count": 309, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:21:00", + "prochain_rdv": "2021-06-30 09:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 56, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-29 10:28:00", + "prochain_rdv": "2021-06-24 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 1596, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-29 13:30:00", + "prochain_rdv": "2021-06-29 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 110, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 15:08:00", + "prochain_rdv": "2021-06-24 15:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 15, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, From 3a6fb1d0d59e0ed2f9793f2bd38bde73aa4cefea Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:45:11 +0000 Subject: [PATCH 0153/1182] Updating the times for Region 08 --- 08.json | 61 +++++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/08.json b/08.json index dc9062d86a7..410a1759fd7 100644 --- a/08.json +++ b/08.json @@ -1,8 +1,37 @@ { "version": 1, - "last_updated": "2021-06-08 14:38:15.913392+02:00", + "last_updated": "2021-06-08 16:45:10.363399+02:00", "last_scrap": [], - "centres_disponibles": [], + "centres_disponibles": [ + { + "departement": "08", + "nom": "Cityläkarna i Nybro", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.91011942888134, + "latitude": 56.74309528394747, + "city": "Nybro", + "cp": "00000" + }, + "metadata": { + "address": "Stora Nygatan 15, Nybro", + "business_hours": null, + "phone_number": "0481-49 07 00" + }, + "prochain_rdv": "2021-06-16 08:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 420, + "internal_id": "525", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], "centres_indisponibles": [ { "departement": "08", @@ -172,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Cityläkarna i Nybro", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.91011942888134, - "latitude": 56.74309528394747, - "city": "Nybro", - "cp": "00000" - }, - "metadata": { - "address": "Stora Nygatan 15, Nybro", - "business_hours": null, - "phone_number": "0481-49 07 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "525", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Cityläkarna i Oskarshamn", From 36ec25bbf6ad081c85e35220dc25e34c6c298a72 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:46:02 +0000 Subject: [PATCH 0154/1182] Updating the times for Region 07 --- 07.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/07.json b/07.json index 3cbcb9f8f2c..7353828fc87 100644 --- a/07.json +++ b/07.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 14:39:08.502790+02:00", + "last_updated": "2021-06-08 16:46:01.006294+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 10:55:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 08:40:00", + "prochain_rdv": "2021-06-15 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 9, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-08 14:40:00", + "prochain_rdv": "2021-06-15 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 61, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-09 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 43, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:04:00", + "prochain_rdv": "2021-06-16 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1148, + "appointment_count": 1092, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "07", - "nom": "Garvaren", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 13.9309756, - "latitude": 56.83242, - "city": "Ljungby", - "cp": "34160" - }, - "metadata": { - "address": "Stationsgatan 2, 341 60 Ljungby", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30000, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Nibehallen", From 8a293d6e77a4509059ee646085f89e17f64e5ae4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:46:32 +0000 Subject: [PATCH 0155/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 7f5c51ea2aa..7da832c6a7c 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:39:38.649136+02:00", + "last_updated": "2021-06-08 16:46:31.550644+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 07b692fbf38d8cc45f303f355549396c77097e77 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:47:00 +0000 Subject: [PATCH 0156/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index f9e36a3c336..ce4b97d86c0 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:40:05.193822+02:00", + "last_updated": "2021-06-08 16:46:59.986481+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c23a017715b7c4f5a548342a662dc182dfff6376 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:48:15 +0000 Subject: [PATCH 0157/1182] Updating the times for Region 04 --- 04.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/04.json b/04.json index aebed675e1e..e11bf9ea34e 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:41:19.797737+02:00", + "last_updated": "2021-06-08 16:48:14.698586+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 10:45:00", + "prochain_rdv": "2021-06-10 11:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 46, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-13 13:55:00", + "prochain_rdv": "2021-06-12 13:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 33, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-08 19:40:00", + "prochain_rdv": "2021-06-08 19:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 610, + "appointment_count": 662, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 10:48:00", + "prochain_rdv": "2021-06-17 11:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2770, + "appointment_count": 2750, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 37636e1dd5662966973f1cb67547163809fdc176 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:48:41 +0000 Subject: [PATCH 0158/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 1204d72f0b2..3cb5d7a20f0 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:41:44.245277+02:00", + "last_updated": "2021-06-08 16:48:40.733985+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 176f17c2a185af3b91c3938ba47f1f73d196ba69 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:49:13 +0000 Subject: [PATCH 0159/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 8489248f8aa..ef6cc8553a2 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:42:14.308977+02:00", + "last_updated": "2021-06-08 16:49:12.449217+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2454f7671e82aec6b9c0392196f01c6cf95d4e76 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:49:43 +0000 Subject: [PATCH 0160/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 3e7305290cc..ae304bdaf68 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:42:44.233765+02:00", + "last_updated": "2021-06-08 16:49:42.786686+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 14:45:00", + "prochain_rdv": "2021-06-17 15:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 144, + "appointment_count": 124, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 8465c630e7cea2cda912b3f54dd2945237e5609e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:53:51 +0000 Subject: [PATCH 0161/1182] Updating the times for Region 22 --- 22.json | 76 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/22.json b/22.json index 21b33316b7f..8f0e8c80db2 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 14:46:54.704974+02:00", + "last_updated": "2021-06-08 16:53:50.716084+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-09 10:34:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 52, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -21,7 +49,7 @@ "prochain_rdv": "2021-06-14 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5040, + "appointment_count": 5016, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:15:00", + "prochain_rdv": "2021-06-21 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1176, + "appointment_count": 1120, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 15:35:00", + "prochain_rdv": "2021-06-09 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 893, + "appointment_count": 850, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:39:00", + "prochain_rdv": "2021-06-21 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 938, + "appointment_count": 798, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-08 14:50:00", + "prochain_rdv": "2021-06-09 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 397, + "appointment_count": 385, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From 6bc6b72806a61107d1af92c603e723de2259de5c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 14:54:21 +0000 Subject: [PATCH 0162/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 10bdf4124de..2508b77adfc 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 14:47:23.065374+02:00", + "last_updated": "2021-06-08 16:54:21.240691+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7bdaba284baa89b00b6b91aed54fcc815adadfd1 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 17:05:43 +0000 Subject: [PATCH 0163/1182] Updating the stats --- data/output/stats.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 5e04f60287d..8659a056cfb 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 13, "total": 19, - "creneaux": 335 + "creneaux": 385 }, "20": { - "disponibles": 5, + "disponibles": 6, "total": 8, - "creneaux": 3095 + "creneaux": 3092 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 14, "total": 52, - "creneaux": 2711 + "creneaux": 4159 }, "08": { - "disponibles": 0, + "disponibles": 1, "total": 30, - "creneaux": 0 + "creneaux": 420 }, "07": { - "disponibles": 4, + "disponibles": 5, "total": 7, - "creneaux": 1258 + "creneaux": 1206 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3461 + "creneaux": 3491 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 144 + "creneaux": 124 }, "22": { - "disponibles": 6, + "disponibles": 7, "total": 19, - "creneaux": 8535 + "creneaux": 8312 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 80, + "disponibles": 85, "total": 339, - "creneaux": 33616 + "creneaux": 35266 } } \ No newline at end of file From 2276599d587fda4fcc0ca3ffa89355096ac00b27 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:06:12 +0000 Subject: [PATCH 0164/1182] Updating the times for Region 10 --- 10.json | 158 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 79 insertions(+), 79 deletions(-) diff --git a/10.json b/10.json index 646c63ef211..d10d84789fb 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:37:56.456165+02:00", + "last_updated": "2021-06-08 19:06:11.401679+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:40:00", + "prochain_rdv": "2021-06-22 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 18, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-10 10:00:00", + "prochain_rdv": "2021-06-12 08:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 111, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-09 09:35:00", + "prochain_rdv": "2021-06-09 12:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 5, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 10:15:00", + "prochain_rdv": "2021-06-16 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 31, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 14:15:00", + "prochain_rdv": "2021-06-17 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 13, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-15 10:35:00", + "prochain_rdv": "2021-06-22 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 5, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 11:15:00", + "prochain_rdv": "2021-06-16 15:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 60, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-17 09:15:00", + "prochain_rdv": "2021-06-17 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 16, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-16 10:50:00", + "prochain_rdv": "2021-06-15 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 6, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-09 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 31, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": "2021-06-23 13:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -301,7 +329,7 @@ "prochain_rdv": "2021-06-19 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 102, + "appointment_count": 101, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +354,10 @@ "business_hours": null, "phone_number": "0456-73 13 10" }, - "prochain_rdv": "2021-06-23 13:25:00", + "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "576", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,7 +382,7 @@ "business_hours": null, "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-16 10:20:00", + "prochain_rdv": "2021-06-23 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -366,6 +394,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": "2021-06-17 13:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -453,34 +509,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", @@ -536,34 +564,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 54 30" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "581", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ] } \ No newline at end of file From 173323d4f5a829996c00d38715b6461488eddd18 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:06:57 +0000 Subject: [PATCH 0165/1182] Updating the times for Region 20 --- 20.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/20.json b/20.json index d90a3085792..e31a751561d 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:38:45.647710+02:00", + "last_updated": "2021-06-08 19:06:57.261113+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 15:24:00", + "prochain_rdv": "2021-07-07 12:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2763, + "appointment_count": 2747, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-02 14:28:00", + "prochain_rdv": "2021-06-09 13:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:12:00", + "prochain_rdv": "2021-07-09 12:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 7, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 183, + "appointment_count": 175, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-14 14:20:00", + "prochain_rdv": "2021-06-21 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 55, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-22 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 64, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 1f2a959d68bc0bba1f6cc1f60fd961faa8e514c9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:07:22 +0000 Subject: [PATCH 0166/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 0a1e0a049a3..5dbfddfd1a5 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:39:16.317855+02:00", + "last_updated": "2021-06-08 19:07:22.007693+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d186b60c71180913f129c2d48663e0288af7d44b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:07:51 +0000 Subject: [PATCH 0167/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 8a47066c22a..2ce74b52529 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:39:46.236350+02:00", + "last_updated": "2021-06-08 19:07:51.136152+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 39c0c9b6b1049b9ea894000913441d3a3e9b3388 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:08:20 +0000 Subject: [PATCH 0168/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 3f2012d5aa4..e7dda281949 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:40:15.442420+02:00", + "last_updated": "2021-06-08 19:08:19.595158+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2d1105caab125b84460950280ee9f39ed920318a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:08:45 +0000 Subject: [PATCH 0169/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 654af1c5eda..ee88ba648ea 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:40:44.730252+02:00", + "last_updated": "2021-06-08 19:08:45.309782+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f8cadc3ad8272c1a1e7abb9f4fbc24e0e41e173f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:12:08 +0000 Subject: [PATCH 0170/1182] Updating the times for Region 06 --- 06.json | 158 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 79 insertions(+), 79 deletions(-) diff --git a/06.json b/06.json index e13542ca570..3f6e5b53b73 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:44:14.759564+02:00", + "last_updated": "2021-06-08 19:12:07.722449+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-16 11:45:00", + "prochain_rdv": "2021-06-23 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 93, + "appointment_count": 89, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 17:20:00", + "prochain_rdv": "2021-06-22 19:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 104, + "appointment_count": 96, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 09:24:00", + "prochain_rdv": "2021-06-24 10:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 54, @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": "2021-06-23 11:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:28:00", + "prochain_rdv": "2021-06-22 12:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 18, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:27:00", + "prochain_rdv": "2021-06-23 11:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 47, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-06-24 11:25:00", + "prochain_rdv": "2021-06-30 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 45, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 10:00:00", + "prochain_rdv": "2021-06-30 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 32, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 18:18:00", + "prochain_rdv": "2021-06-23 19:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1650, + "appointment_count": 1626, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +245,7 @@ "prochain_rdv": "2021-06-22 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 309, + "appointment_count": 306, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 09:09:00", + "prochain_rdv": "2021-06-30 13:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 52, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vetlanda vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Norrvägen 2 B, Vetlanda", + "business_hours": null, + "phone_number": "010-243 20 10" + }, + "prochain_rdv": "2021-06-22 13:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 12, + "internal_id": "2050", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 08:40:00", + "prochain_rdv": "2021-06-24 08:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1596, + "appointment_count": 1590, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 15:16:00", + "prochain_rdv": "2021-06-23 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 3, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -621,6 +621,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -985,34 +1013,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vetlanda vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 15.081352462610193, - "latitude": 57.432375422981, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Norrvägen 2 B, Vetlanda", - "business_hours": null, - "phone_number": "010-243 20 10" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2050", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", From 478047a5c9e9b31345ccb579f60fddd0c502d148 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:15:30 +0000 Subject: [PATCH 0171/1182] Updating the times for Region 08 --- 08.json | 470 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 235 insertions(+), 235 deletions(-) diff --git a/08.json b/08.json index 410a1759fd7..f139fd4098a 100644 --- a/08.json +++ b/08.json @@ -1,28 +1,28 @@ { "version": 1, - "last_updated": "2021-06-08 16:45:10.363399+02:00", + "last_updated": "2021-06-08 19:15:29.779682+02:00", "last_scrap": [], "centres_disponibles": [ { "departement": "08", - "nom": "Cityläkarna i Nybro", + "nom": "Blomstermåla hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.91011942888134, - "latitude": 56.74309528394747, - "city": "Nybro", + "longitude": 16.33309445323957, + "latitude": 56.980970711482186, + "city": "Mönsterås", "cp": "00000" }, "metadata": { - "address": "Stora Nygatan 15, Nybro", + "address": "Stationsgatan 2, Blomstermåla", "business_hours": null, - "phone_number": "0481-49 07 00" + "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-17 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 420, - "internal_id": "525", + "appointment_count": 158, + "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -30,29 +30,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "08", - "nom": "Ankarsrums hälsocentral", + "nom": "Cityläkarna i Nybro", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.333555295363333, - "latitude": 57.699563322789174, - "city": "Västervik", + "longitude": 15.91011942888134, + "latitude": 56.74309528394747, + "city": "Nybro", "cp": "00000" }, "metadata": { - "address": "Kungsvägen 40, Ankarsrum", + "address": "Stora Nygatan 15, Nybro", "business_hours": null, - "phone_number": "0490-504 00" + "phone_number": "0481-49 07 00" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "520", + "appointment_count": 227, + "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -63,24 +61,24 @@ }, { "departement": "08", - "nom": "Astrakanen Emmaboda läkarcentrum", + "nom": "Emmaboda hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.540197992566172, - "latitude": 56.63137271007867, + "longitude": 15.536922734414482, + "latitude": 56.63139260693963, "city": "Emmaboda", "cp": "00000" }, "metadata": { - "address": "Storgatan 15, Emmaboda", + "address": "Rådhusgatan 12, Emmaboda", "business_hours": null, - "phone_number": "0471-79 91 11" + "phone_number": "0471-185 14" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "528", + "appointment_count": 186, + "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -91,24 +89,24 @@ }, { "departement": "08", - "nom": "Astrakanen läkarcentrum Nybro", + "nom": "Hultsfreds hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.912165806501925, - "latitude": 56.74436875452638, - "city": "Nybro", + "longitude": 15.842211833484315, + "latitude": 57.48814139634313, + "city": "Hultsfred", "cp": "00000" }, "metadata": { - "address": "Tunnelgatan 8, Nybro", + "address": "Västra Långgatan 46, Hultsfred", "business_hours": null, - "phone_number": "0481-696 96" + "phone_number": "0495-155 02" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-15 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "526", + "appointment_count": 151, + "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -119,24 +117,24 @@ }, { "departement": "08", - "nom": "Blomstermåla hälsocentral", + "nom": "Högsby hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.33309445323957, - "latitude": 56.980970711482186, - "city": "Mönsterås", + "longitude": 16.025529740353928, + "latitude": 57.171486143323655, + "city": "Högsby", "cp": "00000" }, "metadata": { - "address": "Stationsgatan 2, Blomstermåla", + "address": "Dr Mobergers väg 6, Högsby", "business_hours": null, - "phone_number": "0499-209 30" + "phone_number": "0491-283 00" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "521", + "appointment_count": 234, + "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -147,24 +145,24 @@ }, { "departement": "08", - "nom": "Blå Kustens hälsocentral", + "nom": "Mönsterås hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.422405091310075, - "latitude": 57.26364466199942, - "city": "Oskarshamn", + "longitude": 16.436708819482035, + "latitude": 57.035449569659825, + "city": "Mönsterås", "cp": "00000" }, "metadata": { - "address": "Rösvägen 1, Oskarshamn", + "address": "Allégatan 1, Mönsterås", "business_hours": null, - "phone_number": "0491-78 20 91" + "phone_number": "0499-489 30" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "488", + "appointment_count": 300, + "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -175,24 +173,24 @@ }, { "departement": "08", - "nom": "Borgholms hälsocentral", + "nom": "Mörbylånga hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.6629988395173, - "latitude": 56.88118038491814, - "city": "Borgholm", + "longitude": 16.396170171292617, + "latitude": 56.52222220802543, + "city": "Mörbylånga", "cp": "00000" }, "metadata": { - "address": "Resedan 1, Borgholm", + "address": "Rönningevägen 2, Mörbylånga", "business_hours": null, - "phone_number": "0485-151 20" + "phone_number": "0485-491 00" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "490", + "appointment_count": 279, + "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -203,24 +201,24 @@ }, { "departement": "08", - "nom": "Cityläkarna i Oskarshamn", + "nom": "Mörlunda hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.44876461698304, - "latitude": 57.264168219301204, - "city": "Oskarshamn", + "longitude": 15.86393537513817, + "latitude": 57.31718605791332, + "city": "Hultsfred", "cp": "00000" }, "metadata": { - "address": "Stora Torget 3, Oskarshamn", + "address": "Doktorsvägen 6, Mörlunda", "business_hours": null, - "phone_number": "0491-708 00" + "phone_number": "0495-236 40" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-15 13:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "529", + "appointment_count": 110, + "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -231,24 +229,24 @@ }, { "departement": "08", - "nom": "Emmaboda hälsocentral", + "nom": "Nybro hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.536922734414482, - "latitude": 56.63139260693963, - "city": "Emmaboda", + "longitude": 15.91133031488841, + "latitude": 56.74365104347946, + "city": "Nybro", "cp": "00000" }, "metadata": { - "address": "Rådhusgatan 12, Emmaboda", + "address": "Tunnelgatan 6, Nybro", "business_hours": null, - "phone_number": "0471-185 14" + "phone_number": "0481-447 60" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-16 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "506", + "appointment_count": 234, + "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -259,24 +257,24 @@ }, { "departement": "08", - "nom": "Gamleby hälsocentral", + "nom": "Torsås hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.39940361635937, - "latitude": 57.89769680999943, - "city": "Västervik", + "longitude": 15.996726089216628, + "latitude": 56.4113261043122, + "city": "Torsås", "cp": "00000" }, "metadata": { - "address": "Centrum, Gamleby", + "address": "Badhusgatan 20, Torsås", "business_hours": null, - "phone_number": "0493-130 00" + "phone_number": "0486-412 30" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-15 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "516", + "appointment_count": 318, + "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -287,24 +285,24 @@ }, { "departement": "08", - "nom": "Gripens hälsocentral", + "nom": "Vaccinationscentral covid-19 Kalmar", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.443856103183354, - "latitude": 57.26495648481284, - "city": "Oskarshamn", + "longitude": 16.35640759555987, + "latitude": 56.66417229353723, + "city": "Kalmar", "cp": "00000" }, "metadata": { - "address": "Köpmangatan 14, Oskarshamn", + "address": "Tullslätten 4, Kalmar", "business_hours": null, - "phone_number": "0491-78 22 23" + "phone_number": "0480-844 44" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-14 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "495", + "appointment_count": 2148, + "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -315,24 +313,24 @@ }, { "departement": "08", - "nom": "Hultsfreds hälsocentral", + "nom": "Vaccinationscentral covid-19 Oskarshamn", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.842211833484315, - "latitude": 57.48814139634313, - "city": "Hultsfred", + "longitude": 16.433293539951787, + "latitude": 57.26561125193819, + "city": "Oskarshamn", "cp": "00000" }, "metadata": { - "address": "Västra Långgatan 46, Hultsfred", + "address": "Döderhultsvägen 26-28, Oskarshamn", "business_hours": null, - "phone_number": "0495-155 02" + "phone_number": "0480-844 44" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-14 11:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "505", + "appointment_count": 1704, + "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -343,24 +341,24 @@ }, { "departement": "08", - "nom": "Högsby hälsocentral", + "nom": "Vaccinationscentral covid-19 Västervik", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.025529740353928, - "latitude": 57.171486143323655, - "city": "Högsby", + "longitude": 16.63873172343222, + "latitude": 57.757591327850086, + "city": "Västervik", "cp": "00000" }, "metadata": { - "address": "Dr Mobergers väg 6, Högsby", + "address": "Spötorget 1, Västervik", "business_hours": null, - "phone_number": "0491-283 00" + "phone_number": "0480-844 44" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-15 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "519", + "appointment_count": 1274, + "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -371,24 +369,24 @@ }, { "departement": "08", - "nom": "Kristinebergs hälsocentral", + "nom": "Vimmerby hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.466201540936055, - "latitude": 57.25039279541824, - "city": "Oskarshamn", + "longitude": 15.858660065659615, + "latitude": 57.668227743684724, + "city": "Vimmerby", "cp": "00000" }, "metadata": { - "address": "Ingenjörsvägen 26, Oskarshamn", + "address": "Drottninggatan 22, Vimmerby", "business_hours": null, - "phone_number": "0491-78 25 50" + "phone_number": "0492-176 00" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-17 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "513", + "appointment_count": 467, + "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -396,27 +394,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "08", - "nom": "Lindsdals hälsocentral", + "nom": "Ankarsrums hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.29539344333584, - "latitude": 56.734330378096026, - "city": "Kalmar", + "longitude": 16.333555295363333, + "latitude": 57.699563322789174, + "city": "Västervik", "cp": "00000" }, "metadata": { - "address": "Förlösavägen 4, Kalmar", + "address": "Kungsvägen 40, Ankarsrum", "business_hours": null, - "phone_number": "0480-819 00" + "phone_number": "0490-504 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "518", + "internal_id": "520", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -427,24 +427,24 @@ }, { "departement": "08", - "nom": "Ljungbyholms hälsocentral", + "nom": "Astrakanen Emmaboda läkarcentrum", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.17286991496342, - "latitude": 56.63362285475361, - "city": "Kalmar", + "longitude": 15.540197992566172, + "latitude": 56.63137271007867, + "city": "Emmaboda", "cp": "00000" }, "metadata": { - "address": "Tunnbindarevägen 4, Ljungbyholm", + "address": "Storgatan 15, Emmaboda", "business_hours": null, - "phone_number": "0480-819 25" + "phone_number": "0471-79 91 11" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "496", + "internal_id": "528", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -455,24 +455,24 @@ }, { "departement": "08", - "nom": "Läkarmottagning Dorrit Ruge", + "nom": "Astrakanen läkarcentrum Nybro", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.58098163429231, - "latitude": 57.32054440829297, - "city": "Hultsfred", + "longitude": 15.912165806501925, + "latitude": 56.74436875452638, + "city": "Nybro", "cp": "00000" }, "metadata": { - "address": "Södra Järnvägsgatan 5, Virserum", + "address": "Tunnelgatan 8, Nybro", "business_hours": null, - "phone_number": "0495-316 00" + "phone_number": "0481-696 96" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "510", + "internal_id": "526", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -483,24 +483,24 @@ }, { "departement": "08", - "nom": "Löttorps hälsocentral", + "nom": "Blå Kustens hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.98853903202339, - "latitude": 57.165777189829655, - "city": "Borgholm", + "longitude": 16.422405091310075, + "latitude": 57.26364466199942, + "city": "Oskarshamn", "cp": "00000" }, "metadata": { - "address": "Löttorpsvägen 63, Löttorp", + "address": "Rösvägen 1, Oskarshamn", "business_hours": null, - "phone_number": "0485-151 20" + "phone_number": "0491-78 20 91" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "494", + "internal_id": "488", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -511,24 +511,24 @@ }, { "departement": "08", - "nom": "Mönsterås hälsocentral", + "nom": "Borgholms hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.436708819482035, - "latitude": 57.035449569659825, - "city": "Mönsterås", + "longitude": 16.6629988395173, + "latitude": 56.88118038491814, + "city": "Borgholm", "cp": "00000" }, "metadata": { - "address": "Allégatan 1, Mönsterås", + "address": "Resedan 1, Borgholm", "business_hours": null, - "phone_number": "0499-489 30" + "phone_number": "0485-151 20" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "492", + "internal_id": "490", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -539,24 +539,24 @@ }, { "departement": "08", - "nom": "Mörbylånga hälsocentral", + "nom": "Cityläkarna i Oskarshamn", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.396170171292617, - "latitude": 56.52222220802543, - "city": "Mörbylånga", + "longitude": 16.44876461698304, + "latitude": 57.264168219301204, + "city": "Oskarshamn", "cp": "00000" }, "metadata": { - "address": "Rönningevägen 2, Mörbylånga", + "address": "Stora Torget 3, Oskarshamn", "business_hours": null, - "phone_number": "0485-491 00" + "phone_number": "0491-708 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "500", + "internal_id": "529", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -567,24 +567,24 @@ }, { "departement": "08", - "nom": "Mörlunda hälsocentral", + "nom": "Gamleby hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.86393537513817, - "latitude": 57.31718605791332, - "city": "Hultsfred", + "longitude": 16.39940361635937, + "latitude": 57.89769680999943, + "city": "Västervik", "cp": "00000" }, "metadata": { - "address": "Doktorsvägen 6, Mörlunda", + "address": "Centrum, Gamleby", "business_hours": null, - "phone_number": "0495-236 40" + "phone_number": "0493-130 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "515", + "internal_id": "516", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -595,24 +595,24 @@ }, { "departement": "08", - "nom": "Nybro hälsocentral", + "nom": "Gripens hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.91133031488841, - "latitude": 56.74365104347946, - "city": "Nybro", + "longitude": 16.443856103183354, + "latitude": 57.26495648481284, + "city": "Oskarshamn", "cp": "00000" }, "metadata": { - "address": "Tunnelgatan 6, Nybro", + "address": "Köpmangatan 14, Oskarshamn", "business_hours": null, - "phone_number": "0481-447 60" + "phone_number": "0491-78 22 23" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "499", + "internal_id": "495", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -623,24 +623,24 @@ }, { "departement": "08", - "nom": "Smedby hälsocentral", + "nom": "Kristinebergs hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.231942415356176, - "latitude": 56.68159696651928, - "city": "Kalmar", + "longitude": 16.466201540936055, + "latitude": 57.25039279541824, + "city": "Oskarshamn", "cp": "00000" }, "metadata": { - "address": "Ingelstorpsvägen 1, Kalmar", + "address": "Ingenjörsvägen 26, Oskarshamn", "business_hours": null, - "phone_number": "0480-818 70" + "phone_number": "0491-78 25 50" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "498", + "internal_id": "513", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -651,24 +651,24 @@ }, { "departement": "08", - "nom": "Torsås hälsocentral", + "nom": "Lindsdals hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.996726089216628, - "latitude": 56.4113261043122, - "city": "Torsås", + "longitude": 16.29539344333584, + "latitude": 56.734330378096026, + "city": "Kalmar", "cp": "00000" }, "metadata": { - "address": "Badhusgatan 20, Torsås", + "address": "Förlösavägen 4, Kalmar", "business_hours": null, - "phone_number": "0486-412 30" + "phone_number": "0480-819 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "493", + "internal_id": "518", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -679,24 +679,24 @@ }, { "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", + "nom": "Ljungbyholms hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", + "longitude": 16.17286991496342, + "latitude": 56.63362285475361, + "city": "Kalmar", "cp": "00000" }, "metadata": { - "address": "Villagatan 4, Borgholm", + "address": "Tunnbindarevägen 4, Ljungbyholm", "business_hours": null, - "phone_number": "0480-844 44" + "phone_number": "0480-819 25" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2056", + "internal_id": "496", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -707,24 +707,24 @@ }, { "departement": "08", - "nom": "Vaccinationscentral covid-19 Kalmar", + "nom": "Läkarmottagning Dorrit Ruge", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.35640759555987, - "latitude": 56.66417229353723, - "city": "Kalmar", + "longitude": 15.58098163429231, + "latitude": 57.32054440829297, + "city": "Hultsfred", "cp": "00000" }, "metadata": { - "address": "Tullslätten 4, Kalmar", + "address": "Södra Järnvägsgatan 5, Virserum", "business_hours": null, - "phone_number": "0480-844 44" + "phone_number": "0495-316 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1546", + "internal_id": "510", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -735,24 +735,24 @@ }, { "departement": "08", - "nom": "Vaccinationscentral covid-19 Oskarshamn", + "nom": "Löttorps hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.433293539951787, - "latitude": 57.26561125193819, - "city": "Oskarshamn", + "longitude": 16.98853903202339, + "latitude": 57.165777189829655, + "city": "Borgholm", "cp": "00000" }, "metadata": { - "address": "Döderhultsvägen 26-28, Oskarshamn", + "address": "Löttorpsvägen 63, Löttorp", "business_hours": null, - "phone_number": "0480-844 44" + "phone_number": "0485-151 20" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2053", + "internal_id": "494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,24 +763,24 @@ }, { "departement": "08", - "nom": "Vaccinationscentral covid-19 Västervik", + "nom": "Smedby hälsocentral", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 16.63873172343222, - "latitude": 57.757591327850086, - "city": "Västervik", + "longitude": 16.231942415356176, + "latitude": 56.68159696651928, + "city": "Kalmar", "cp": "00000" }, "metadata": { - "address": "Spötorget 1, Västervik", + "address": "Ingelstorpsvägen 1, Kalmar", "business_hours": null, - "phone_number": "0480-844 44" + "phone_number": "0480-818 70" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1547", + "internal_id": "498", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -791,24 +791,24 @@ }, { "departement": "08", - "nom": "Vimmerby hälsocentral", + "nom": "Vaccinationscentral covid-19 Borgholm", "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", "location": { - "longitude": 15.858660065659615, - "latitude": 57.668227743684724, - "city": "Vimmerby", + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", "cp": "00000" }, "metadata": { - "address": "Drottninggatan 22, Vimmerby", + "address": "Villagatan 4, Borgholm", "business_hours": null, - "phone_number": "0492-176 00" + "phone_number": "0480-844 44" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "491", + "internal_id": "2056", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 0dbdd1fb1c77c12c1f63db23fc7daa73bcf49052 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:16:20 +0000 Subject: [PATCH 0172/1182] Updating the times for Region 07 --- 07.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/07.json b/07.json index 7353828fc87..21b3522796f 100644 --- a/07.json +++ b/07.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 16:46:01.006294+02:00", + "last_updated": "2021-06-08 19:16:19.882907+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "07", - "nom": "Garvaren", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 13.9309756, - "latitude": 56.83242, - "city": "Ljungby", - "cp": "34160" - }, - "metadata": { - "address": "Stationsgatan 2, 341 60 Ljungby", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-10 10:55:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30000, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", @@ -49,7 +21,7 @@ "prochain_rdv": "2021-06-15 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 8, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 09:30:00", + "prochain_rdv": "2021-06-15 08:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 61, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:10:00", + "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 43, + "appointment_count": 42, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:00:00", + "prochain_rdv": "2021-06-16 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1092, + "appointment_count": 4340, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Nibehallen", From 7790a523e29979083a74e38437d3f895122efebc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:16:49 +0000 Subject: [PATCH 0173/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 7da832c6a7c..a031e97d27e 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:46:31.550644+02:00", + "last_updated": "2021-06-08 19:16:48.750693+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2faae388914ebcbd2ea8b092adadf0ced09659ff Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:17:18 +0000 Subject: [PATCH 0174/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index ce4b97d86c0..a6b5012aa90 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:46:59.986481+02:00", + "last_updated": "2021-06-08 19:17:17.714677+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3ec97be9d895be0ccd3879a324a103168b6729c3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:18:30 +0000 Subject: [PATCH 0175/1182] Updating the times for Region 04 --- 04.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/04.json b/04.json index e11bf9ea34e..8fed0d4ed2b 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:48:14.698586+02:00", + "last_updated": "2021-06-08 19:18:29.465074+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 11:25:00", + "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 37, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-10 19:40:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-12 13:55:00", + "prochain_rdv": "2021-06-22 15:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 25, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-08 19:25:00", + "prochain_rdv": "2021-06-08 19:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 662, + "appointment_count": 573, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 11:24:00", + "prochain_rdv": "2021-06-15 08:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2750, + "appointment_count": 2762, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 620f0629c5954c3dcdd852e4f8b36074991440d4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:19:04 +0000 Subject: [PATCH 0176/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 3cb5d7a20f0..e0b8b6baef3 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:48:40.733985+02:00", + "last_updated": "2021-06-08 19:19:04.185594+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 356c97321d17df81d5d8e6d05bd8446657667804 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:19:31 +0000 Subject: [PATCH 0177/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index ef6cc8553a2..1d047c907be 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:49:12.449217+02:00", + "last_updated": "2021-06-08 19:19:30.968466+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4665c9c0b5be30f5a87f404acfa39816a7285cde Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:20:01 +0000 Subject: [PATCH 0178/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index ae304bdaf68..78545f99546 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:49:42.786686+02:00", + "last_updated": "2021-06-08 19:20:00.893269+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 15:35:00", + "prochain_rdv": "2021-06-17 17:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 124, + "appointment_count": 87, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 870c12fa884df6ad8921a6a73b53621d93ca8b1b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:24:14 +0000 Subject: [PATCH 0179/1182] Updating the times for Region 22 --- 22.json | 80 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/22.json b/22.json index 8f0e8c80db2..f5105bb05fc 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:53:50.716084+02:00", + "last_updated": "2021-06-08 19:24:14.197415+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:34:00", + "prochain_rdv": "2021-06-09 10:41:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 26, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:36:00", + "prochain_rdv": "2021-06-14 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5016, + "appointment_count": 6734, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-18 11:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-17 11:27:00", + "prochain_rdv": "2021-06-17 12:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 78, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:25:00", + "prochain_rdv": "2021-06-21 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1120, + "appointment_count": 1050, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-09 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 850, + "appointment_count": 773, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:24:00", + "prochain_rdv": "2021-06-21 10:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 798, + "appointment_count": 682, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 8b65c638d79dbf298943a7c81bf490d8ea035b69 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 17:24:40 +0000 Subject: [PATCH 0180/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 2508b77adfc..58b70aff35d 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 16:54:21.240691+02:00", + "last_updated": "2021-06-08 19:24:40.242965+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 21f9c62051e34745a804eb06f77e3371f1d0401e Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 18:10:49 +0000 Subject: [PATCH 0181/1182] Updating the stats --- data/output/stats.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 8659a056cfb..b3ede71b67e 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 15, "total": 19, - "creneaux": 385 + "creneaux": 403 }, "20": { "disponibles": 6, "total": 8, - "creneaux": 3092 + "creneaux": 3049 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 14, "total": 52, - "creneaux": 4159 + "creneaux": 4080 }, "08": { - "disponibles": 1, + "disponibles": 14, "total": 30, - "creneaux": 420 + "creneaux": 7790 }, "07": { - "disponibles": 5, + "disponibles": 4, "total": 7, - "creneaux": 1206 + "creneaux": 4451 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 3491 + "creneaux": 3399 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 124 + "creneaux": 87 }, "22": { - "disponibles": 7, + "disponibles": 8, "total": 19, - "creneaux": 8312 + "creneaux": 9742 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 85, + "disponibles": 101, "total": 339, - "creneaux": 35266 + "creneaux": 47078 } } \ No newline at end of file From 037f97c7f995d54372409b8a547e8aca28f995f1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:11:25 +0000 Subject: [PATCH 0182/1182] Updating the times for Region 10 --- 10.json | 94 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/10.json b/10.json index d10d84789fb..49fab52d124 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:06:11.401679+02:00", + "last_updated": "2021-06-08 20:11:24.813150+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-12 08:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 115, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-09 12:05:00", + "prochain_rdv": "2021-06-09 12:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 6, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 33, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-17 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 12, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 14:20:00", + "prochain_rdv": "2021-06-23 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 4, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 15:50:00", + "prochain_rdv": "2021-06-09 11:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 60, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-17 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 15, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-15 14:00:00", + "prochain_rdv": "2021-06-24 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 2, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-09 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 29, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": "2021-06-23 13:10:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 08:50:00", + "prochain_rdv": "2021-06-19 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 101, + "appointment_count": 109, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,7 +326,7 @@ "business_hours": null, "phone_number": "0456-73 13 10" }, - "prochain_rdv": "2021-06-16 08:40:00", + "prochain_rdv": "2021-06-24 15:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-23 15:10:00", + "prochain_rdv": "2021-06-16 12:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,7 +382,7 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-17 13:20:00", + "prochain_rdv": "2021-06-24 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -509,6 +481,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From c9288169112544982d6f406de8bc0a55fbde3e60 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:12:14 +0000 Subject: [PATCH 0183/1182] Updating the times for Region 20 --- 20.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/20.json b/20.json index e31a751561d..94df2798af0 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:06:57.261113+02:00", + "last_updated": "2021-06-08 20:12:13.681180+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 12:36:00", + "prochain_rdv": "2021-07-07 12:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2747, + "appointment_count": 2738, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 13:52:00", + "prochain_rdv": "2021-07-05 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 12:52:00", + "prochain_rdv": "2021-07-09 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 1, "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 175, + "appointment_count": 173, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-21 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 53, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-22 11:25:00", + "prochain_rdv": "2021-06-17 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 60, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 89d3033b2e977b54719be530e21cf4e6b43919d2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:12:43 +0000 Subject: [PATCH 0184/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 5dbfddfd1a5..59551f5448d 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:07:22.007693+02:00", + "last_updated": "2021-06-08 20:12:43.327166+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 458d122d64d95f370d682bdee9e7ed0232b7431c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:13:19 +0000 Subject: [PATCH 0185/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 2ce74b52529..ed1f768920c 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:07:51.136152+02:00", + "last_updated": "2021-06-08 20:13:19.354535+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c167dfcbe920ff7eb1c1d6b0d0e58c1e8c2c97cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:13:46 +0000 Subject: [PATCH 0186/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index e7dda281949..e3bc1560fa5 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:08:19.595158+02:00", + "last_updated": "2021-06-08 20:13:46.078183+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3260cf1f65a3170026f287688f3bf2715f9a92b0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:14:14 +0000 Subject: [PATCH 0187/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index ee88ba648ea..bff6e69624d 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:08:45.309782+02:00", + "last_updated": "2021-06-08 20:14:14.369018+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 11933933f293c2b1deb03a563065442d2616a351 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:17:31 +0000 Subject: [PATCH 0188/1182] Updating the times for Region 06 --- 06.json | 146 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/06.json b/06.json index 3f6e5b53b73..221bb1c09f9 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:12:07.722449+02:00", + "last_updated": "2021-06-08 20:17:31.125981+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 89, + "appointment_count": 88, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:15:00", + "prochain_rdv": "2021-06-22 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 96, + "appointment_count": 84, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:27:00", + "prochain_rdv": "2021-06-10 09:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 55, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:40:00", + "prochain_rdv": "2021-06-17 09:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 20, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 11:51:00", + "prochain_rdv": "2021-06-24 15:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, + "appointment_count": 39, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-06-30 13:35:00", + "prochain_rdv": "2021-07-01 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 27, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 19:57:00", + "prochain_rdv": "2021-06-23 20:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1626, + "appointment_count": 1614, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:20:00", + "prochain_rdv": "2021-06-22 15:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 306, + "appointment_count": 300, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-22 13:45:00", + "prochain_rdv": "2021-06-15 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 16, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -313,24 +313,24 @@ }, { "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.706270565158187, - "latitude": 57.64878432193302, - "city": "Nässjö", + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Nyhemsgatan 6, Nässjö", + "address": "Kortebovägen 6, Jönköping", "business_hours": null, - "phone_number": "010-243 39 00" + "phone_number": "010-242 89 00" }, - "prochain_rdv": "2021-06-24 08:42:00", + "prochain_rdv": "2021-06-15 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1590, - "internal_id": "1225", + "appointment_count": 1, + "internal_id": "1224", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -341,24 +341,24 @@ }, { "departement": "06", - "nom": "Läkarhuset Tranås (åldersgrupp eller riksgrupp)", + "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.976018999635242, - "latitude": 58.03084473580738, - "city": "Tranås", + "longitude": 14.706270565158187, + "latitude": 57.64878432193302, + "city": "Nässjö", "cp": "00000" }, "metadata": { - "address": "Vasagatan 1, Tranås", + "address": "Nyhemsgatan 6, Nässjö", "business_hours": null, - "phone_number": "010-243 98 60" + "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-29 13:40:00", + "prochain_rdv": "2021-06-24 08:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, - "internal_id": "1236", + "appointment_count": 1578, + "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -369,24 +369,24 @@ }, { "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "nom": "Läkarhuset Tranås (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", + "longitude": 14.976018999635242, + "latitude": 58.03084473580738, + "city": "Tranås", "cp": "00000" }, "metadata": { - "address": "Barnarpsgatan 13, Jönköping", + "address": "Vasagatan 1, Tranås", "business_hours": null, - "phone_number": "010-242 84 00" + "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-23 10:40:00", + "prochain_rdv": "2021-06-29 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1259", + "appointment_count": 110, + "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1153,34 +1153,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", @@ -1377,6 +1349,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 1696f9ce927cfad4ff76728e7762d3745a93cb7b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:21:11 +0000 Subject: [PATCH 0189/1182] Updating the times for Region 08 --- 08.json | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/08.json b/08.json index f139fd4098a..0accc67c769 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:15:29.779682+02:00", + "last_updated": "2021-06-08 20:21:10.466929+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 08:25:00", + "prochain_rdv": "2021-06-17 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 158, + "appointment_count": 126, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 227, + "appointment_count": 176, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-16 11:05:00", + "prochain_rdv": "2021-06-16 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 186, + "appointment_count": 190, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:20:00", + "prochain_rdv": "2021-06-15 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 151, + "appointment_count": 133, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 234, + "appointment_count": 227, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 300, + "appointment_count": 259, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-16 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 279, + "appointment_count": 261, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 13:55:00", + "prochain_rdv": "2021-06-15 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 76, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 09:15:00", + "prochain_rdv": "2021-06-16 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 234, + "appointment_count": 186, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:20:00", + "prochain_rdv": "2021-06-15 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 318, + "appointment_count": 300, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 13:42:00", + "prochain_rdv": "2021-06-14 13:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2148, + "appointment_count": 2017, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:09:00", + "prochain_rdv": "2021-06-14 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1704, + "appointment_count": 1544, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:18:00", + "prochain_rdv": "2021-06-15 13:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1274, + "appointment_count": 1230, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 09:10:00", + "prochain_rdv": "2021-06-17 10:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 467, + "appointment_count": 428, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 478ab4d10deb656ac9783b1ae457828ab808c955 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:22:05 +0000 Subject: [PATCH 0190/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index 21b3522796f..d9985adf565 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:16:19.882907+02:00", + "last_updated": "2021-06-08 20:22:04.448726+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 08:10:00", + "prochain_rdv": "2021-06-09 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 61, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4340, + "appointment_count": 4298, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 14215b1b882d46340fb863d9c22d8fdf30dccab2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:22:35 +0000 Subject: [PATCH 0191/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index a031e97d27e..3302a5629ff 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:16:48.750693+02:00", + "last_updated": "2021-06-08 20:22:35.223078+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3b3dd52e9f4de562f2181c5115cb6e92e6abb289 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:23:05 +0000 Subject: [PATCH 0192/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index a6b5012aa90..0337b73f01a 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:17:17.714677+02:00", + "last_updated": "2021-06-08 20:23:05.146265+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5c3581bcf43f7f1f3c4d0b68d5a8213fae7c5514 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:24:19 +0000 Subject: [PATCH 0193/1182] Updating the times for Region 04 --- 04.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/04.json b/04.json index 8fed0d4ed2b..6ba0693802c 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:18:29.465074+02:00", + "last_updated": "2021-06-08 20:24:19.393909+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 08:40:00", + "prochain_rdv": "2021-06-16 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 31, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-10 19:40:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 15:10:00", + "prochain_rdv": "2021-06-18 12:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 27, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-08 19:35:00", + "prochain_rdv": "2021-07-06 19:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 573, + "appointment_count": 556, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-15 08:32:00", + "prochain_rdv": "2021-06-15 10:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2762, + "appointment_count": 2758, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 376975f990ce00654a9493e56cae3320f26186e2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:24:50 +0000 Subject: [PATCH 0194/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index e0b8b6baef3..81888f806aa 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:19:04.185594+02:00", + "last_updated": "2021-06-08 20:24:50.272723+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8587bff6d248728212d643d59a467d0db8603fa6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:25:24 +0000 Subject: [PATCH 0195/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 1d047c907be..e3a5fcaa473 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:19:30.968466+02:00", + "last_updated": "2021-06-08 20:25:23.416443+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e248f001b7e98739449036088477d56b22260352 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:25:58 +0000 Subject: [PATCH 0196/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 78545f99546..67b00a639e2 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:20:00.893269+02:00", + "last_updated": "2021-06-08 20:25:57.755812+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 17:35:00", + "prochain_rdv": "2021-06-17 17:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 87, + "appointment_count": 74, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 8a0db6b561650bd8df81f68d8e42713aa5542fcc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:30:09 +0000 Subject: [PATCH 0197/1182] Updating the times for Region 22 --- 22.json | 128 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/22.json b/22.json index f5105bb05fc..f7af3c7cede 100644 --- a/22.json +++ b/22.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-08 19:24:14.197415+02:00", + "last_updated": "2021-06-08 20:30:09.149097+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-09 10:41:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 26, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -49,7 +21,7 @@ "prochain_rdv": "2021-06-14 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6734, + "appointment_count": 6664, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-18 11:25:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -130,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:35:00", + "prochain_rdv": "2021-06-21 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1050, + "appointment_count": 1022, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +105,7 @@ "prochain_rdv": "2021-06-09 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 773, + "appointment_count": 722, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:39:00", + "prochain_rdv": "2021-06-21 10:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 682, + "appointment_count": 630, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +161,7 @@ "prochain_rdv": "2021-06-09 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 385, + "appointment_count": 383, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,6 +173,62 @@ } ], "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 3e64a43f0fe2cc84373fb4a3342c7ad7496f3d58 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 18:30:34 +0000 Subject: [PATCH 0198/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 58b70aff35d..1bdb66d7578 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 19:24:40.242965+02:00", + "last_updated": "2021-06-08 20:30:34.348514+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2d8f323421b124989c84ea663def17d2ae24e4aa Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 19:08:27 +0000 Subject: [PATCH 0199/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index b3ede71b67e..fd55582d0ce 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 15, + "disponibles": 14, "total": 19, - "creneaux": 403 + "creneaux": 407 }, "20": { "disponibles": 6, "total": 8, - "creneaux": 3049 + "creneaux": 3026 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 14, "total": 52, - "creneaux": 4080 + "creneaux": 4016 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 7790 + "creneaux": 7153 }, "07": { "disponibles": 4, "total": 7, - "creneaux": 4451 + "creneaux": 4409 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 3399 + "creneaux": 3372 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 87 + "creneaux": 74 }, "22": { - "disponibles": 8, + "disponibles": 6, "total": 19, - "creneaux": 9742 + "creneaux": 9499 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 101, + "disponibles": 97, "total": 339, - "creneaux": 47078 + "creneaux": 46033 } } \ No newline at end of file From 8f0436fe3df6d68c2e6dff1e9175eb83c697fa57 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:09:05 +0000 Subject: [PATCH 0200/1182] Updating the times for Region 10 --- 10.json | 102 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/10.json b/10.json index 49fab52d124..9ec4e096b89 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:11:24.813150+02:00", + "last_updated": "2021-06-08 21:09:04.753624+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:10:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 115, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-09 12:10:00", + "prochain_rdv": "2021-06-24 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 5, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 14:15:00", + "prochain_rdv": "2021-06-16 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 33, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-17 13:20:00", + "prochain_rdv": "2021-06-24 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 10, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 09:00:00", + "prochain_rdv": "2021-06-23 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-09 11:50:00", + "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 59, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-17 10:10:00", + "prochain_rdv": "2021-06-17 10:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 17, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-24 10:50:00", + "prochain_rdv": "2021-06-16 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 63, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-09 09:00:00", + "prochain_rdv": "2021-06-24 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 25, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:00:00", + "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 109, + "appointment_count": 105, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Sölvesborgs vårdcentral", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Markgatan 30", - "business_hours": null, - "phone_number": "0456-73 13 10" - }, - "prochain_rdv": "2021-06-24 15:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "576", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Trossö vårdcentral, Karlskrona", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-16 12:35:00", + "prochain_rdv": "2021-06-09 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, @@ -509,6 +481,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Sölvesborgs vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Markgatan 30", + "business_hours": null, + "phone_number": "0456-73 13 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "576", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From 7163e0fa823b969f65b4f41e030372f1d35607fb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:09:56 +0000 Subject: [PATCH 0201/1182] Updating the times for Region 20 --- 20.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/20.json b/20.json index 94df2798af0..492e469d6b6 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:12:13.681180+02:00", + "last_updated": "2021-06-08 21:09:55.760876+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 12:32:00", + "prochain_rdv": "2021-07-07 12:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2738, + "appointment_count": 2732, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 14:36:00", + "prochain_rdv": "2021-07-07 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 14:24:00", + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2111", + "appointment_count": 166, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-06-22 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 173, - "internal_id": "2102", + "appointment_count": 51, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +117,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-21 14:20:00", + "prochain_rdv": "2021-06-22 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, - "internal_id": "2101", + "appointment_count": 66, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -142,27 +142,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 10:45:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, - "internal_id": "2103", + "appointment_count": 0, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -170,9 +172,7 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", "nom": "Doktor.se / Ludvika", From 8504a5a840cd1dc94be8b3f721f3fdf165741045 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:10:22 +0000 Subject: [PATCH 0202/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 59551f5448d..60c970975fd 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:12:43.327166+02:00", + "last_updated": "2021-06-08 21:10:22.019519+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2bcd5abb95cab4aff240a0dea33da9aad2d2b88c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:10:52 +0000 Subject: [PATCH 0203/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index ed1f768920c..37ddbf94d3c 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:13:19.354535+02:00", + "last_updated": "2021-06-08 21:10:52.027875+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4dde765410ea55a501b6251c361f09d4772775ec Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:11:20 +0000 Subject: [PATCH 0204/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index e3bc1560fa5..dc7a111037f 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:13:46.078183+02:00", + "last_updated": "2021-06-08 21:11:20.195655+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0b68f16b49c4cd4bd45f62e50c1ef4408ab78c82 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:11:51 +0000 Subject: [PATCH 0205/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index bff6e69624d..b6e369c01fa 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:14:14.369018+02:00", + "last_updated": "2021-06-08 21:11:50.687543+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7a966a8dae9ee1dbf24cbd5950e59b9d7ab98e08 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:15:17 +0000 Subject: [PATCH 0206/1182] Updating the times for Region 06 --- 06.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/06.json b/06.json index 221bb1c09f9..0f48a903bff 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:17:31.125981+02:00", + "last_updated": "2021-06-08 21:15:17.007702+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:45:00", + "prochain_rdv": "2021-06-23 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 88, + "appointment_count": 86, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:30:00", + "prochain_rdv": "2021-06-22 19:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 84, + "appointment_count": 76, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-10 09:21:00", + "prochain_rdv": "2021-06-15 17:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 54, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-17 09:12:00", + "prochain_rdv": "2021-06-22 12:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 10, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:36:00", + "prochain_rdv": "2021-06-24 15:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 33, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-07-01 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 21, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 20:06:00", + "prochain_rdv": "2021-06-23 20:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1614, + "appointment_count": 1610, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-30 13:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 50, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-15 13:35:00", + "prochain_rdv": "2021-07-01 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 4, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,7 +326,7 @@ "business_hours": null, "phone_number": "010-242 89 00" }, - "prochain_rdv": "2021-06-15 11:05:00", + "prochain_rdv": "2021-06-29 11:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, From 62839afa0b8126211e47a6022785489571a91cb1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:18:53 +0000 Subject: [PATCH 0207/1182] Updating the times for Region 08 --- 08.json | 106 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/08.json b/08.json index 0accc67c769..bf82c903388 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:21:10.466929+02:00", + "last_updated": "2021-06-08 21:18:53.282049+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 08:35:00", + "prochain_rdv": "2021-06-17 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 126, + "appointment_count": 110, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 176, + "appointment_count": 158, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-16 11:20:00", + "prochain_rdv": "2021-06-17 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 190, + "appointment_count": 165, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-15 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 133, + "appointment_count": 131, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 09:00:00", + "prochain_rdv": "2021-06-16 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 227, + "appointment_count": 202, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0499-489 30" }, - "prochain_rdv": "2021-06-16 09:35:00", + "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 259, + "appointment_count": 218, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:15:00", + "prochain_rdv": "2021-06-16 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 261, + "appointment_count": 238, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 14:05:00", + "prochain_rdv": "2021-06-15 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, + "appointment_count": 55, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 09:35:00", + "prochain_rdv": "2021-06-16 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 186, + "appointment_count": 156, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": "2021-06-16 16:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 8, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Vaccinationscentral covid-19 Kalmar", @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 13:54:00", + "prochain_rdv": "2021-06-14 14:14:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2017, + "appointment_count": 1890, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:15:00", + "prochain_rdv": "2021-06-14 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1544, + "appointment_count": 1403, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +382,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:21:00", + "prochain_rdv": "2021-06-15 13:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1230, + "appointment_count": 1205, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +410,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:05:00", + "prochain_rdv": "2021-06-17 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 428, + "appointment_count": 389, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, @@ -789,34 +817,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", - "cp": "00000" - }, - "metadata": { - "address": "Villagatan 4, Borgholm", - "business_hours": null, - "phone_number": "0480-844 44" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2056", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Virserums läkarhus", From 13eab8d478abbca2908138397c0e551ad62bdb00 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:19:46 +0000 Subject: [PATCH 0208/1182] Updating the times for Region 07 --- 07.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/07.json b/07.json index d9985adf565..52aae0ec4fe 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:22:04.448726+02:00", + "last_updated": "2021-06-08 21:19:45.849695+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-15 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 7, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-09 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 60, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 41, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:48:00", + "prochain_rdv": "2021-06-09 10:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4298, + "appointment_count": 4312, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From c1c85b593876a156859a91f3bb71b787b2e6cfc2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:20:13 +0000 Subject: [PATCH 0209/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 3302a5629ff..d93ed1889e8 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:22:35.223078+02:00", + "last_updated": "2021-06-08 21:20:12.577228+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 97362eebb30c3680159a76304fb7e8e2f4540b3f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:20:38 +0000 Subject: [PATCH 0210/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 0337b73f01a..9246cb1fc94 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:23:05.146265+02:00", + "last_updated": "2021-06-08 21:20:37.880685+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c0c88ef566d051d2ce142924d6bc75b4263e92ea Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:21:44 +0000 Subject: [PATCH 0211/1182] Updating the times for Region 04 --- 04.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/04.json b/04.json index 6ba0693802c..c7ae6d0d480 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 20:24:19.393909+02:00", + "last_updated": "2021-06-08 21:21:43.782659+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-13 10:05:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Gnesta, Gnesta", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:05:00", + "prochain_rdv": "2021-06-16 09:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 28, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +74,7 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-18 12:00:00", + "prochain_rdv": "2021-06-13 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 27, @@ -77,7 +105,7 @@ "prochain_rdv": "2021-07-06 19:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 556, + "appointment_count": 550, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Flen, Flen", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" - }, - "metadata": { - "address": "Götgatan 6, 642 37 Flen", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30005, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From b65134fb9e234bd998bcd05513ccf6296c5d58bc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:22:10 +0000 Subject: [PATCH 0212/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 81888f806aa..10fb6c143de 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:24:50.272723+02:00", + "last_updated": "2021-06-08 21:22:09.883271+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2a9034bb559325e9c9bd75f2ae21d85183adb4dc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:22:40 +0000 Subject: [PATCH 0213/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index e3a5fcaa473..74d3c3da105 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:25:23.416443+02:00", + "last_updated": "2021-06-08 21:22:39.599425+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c3866c05a56daa4131ebd590674c21dad933aa9c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:23:08 +0000 Subject: [PATCH 0214/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 67b00a639e2..530ed6da341 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:25:57.755812+02:00", + "last_updated": "2021-06-08 21:23:08.046471+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 17:40:00", + "prochain_rdv": "2021-06-17 17:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 74, + "appointment_count": 64, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From c2878242a077a332b50f8a4611f4e69abdd37581 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:27:10 +0000 Subject: [PATCH 0215/1182] Updating the times for Region 22 --- 22.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/22.json b/22.json index f7af3c7cede..68af3f54dda 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:30:09.149097+02:00", + "last_updated": "2021-06-08 21:27:09.967937+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:39:00", + "prochain_rdv": "2021-06-14 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6664, + "appointment_count": 6636, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-21 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1022, + "appointment_count": 980, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:35:00", + "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 722, + "appointment_count": 709, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:42:00", + "prochain_rdv": "2021-06-21 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 630, + "appointment_count": 602, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From 46a2e2923f50d8774cabfe695fb87c33fd74b2d1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:27:40 +0000 Subject: [PATCH 0216/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 1bdb66d7578..6d98ae3bdd2 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 20:30:34.348514+02:00", + "last_updated": "2021-06-08 21:27:39.644806+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d221ca5dc16ae93a5e64b4137b4498529dfbab4b Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 19:51:13 +0000 Subject: [PATCH 0217/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index fd55582d0ce..26fadb05bf4 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 14, + "disponibles": 13, "total": 19, - "creneaux": 407 + "creneaux": 456 }, "20": { - "disponibles": 6, + "disponibles": 5, "total": 8, - "creneaux": 3026 + "creneaux": 3016 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 14, "total": 52, - "creneaux": 4016 + "creneaux": 3965 }, "08": { - "disponibles": 14, + "disponibles": 15, "total": 30, - "creneaux": 7153 + "creneaux": 6628 }, "07": { "disponibles": 4, "total": 7, - "creneaux": 4409 + "creneaux": 4420 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 3372 + "creneaux": 3364 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 74 + "creneaux": 64 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 9499 + "creneaux": 9388 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 97, "total": 339, - "creneaux": 46033 + "creneaux": 45378 } } \ No newline at end of file From 67cab0b1be971c9135b2bb11551ff758046f554c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:51:57 +0000 Subject: [PATCH 0218/1182] Updating the times for Region 10 --- 10.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/10.json b/10.json index 9ec4e096b89..76e4ded4090 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:09:04.753624+02:00", + "last_updated": "2021-06-08 21:51:57.041768+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:25:00", + "prochain_rdv": "2021-06-22 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-12 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 111, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 10:30:00", + "prochain_rdv": "2021-06-09 12:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 5, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 35, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 09:05:00", + "prochain_rdv": "2021-06-23 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 4, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 10:40:00", + "prochain_rdv": "2021-06-22 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, + "appointment_count": 56, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-17 10:05:00", + "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 17, + "appointment_count": 16, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,7 +242,7 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-16 10:00:00", + "prochain_rdv": "2021-06-17 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 63, @@ -270,7 +270,7 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-24 15:30:00", + "prochain_rdv": "2021-06-22 16:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 25, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 105, + "appointment_count": 108, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From daa2d8b316740c5edb06a1a149c756453ca0047e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:52:47 +0000 Subject: [PATCH 0219/1182] Updating the times for Region 20 --- 20.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/20.json b/20.json index 492e469d6b6..d2f5245916b 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:09:55.760876+02:00", + "last_updated": "2021-06-08 21:52:46.501364+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 12:48:00", + "prochain_rdv": "2021-07-06 10:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2732, + "appointment_count": 2726, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 166, + "appointment_count": 162, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-22 14:20:00", + "prochain_rdv": "2021-06-23 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 63, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From aaa797ef07ddbdbbbcd403daa8b90f810aa371ce Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:53:14 +0000 Subject: [PATCH 0220/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 60c970975fd..9bdc116dffd 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:10:22.019519+02:00", + "last_updated": "2021-06-08 21:53:13.904282+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 45d15c33239691078ed6dc8429e7befb3fd2f712 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:53:40 +0000 Subject: [PATCH 0221/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 37ddbf94d3c..70e63b9ef62 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:10:52.027875+02:00", + "last_updated": "2021-06-08 21:53:39.605089+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 31b7c74876e2dc93a188d55ce46195ceb0ff5ce5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:54:14 +0000 Subject: [PATCH 0222/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index dc7a111037f..35448d549e1 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:11:20.195655+02:00", + "last_updated": "2021-06-08 21:54:13.454462+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 439e93845a648287356a6e988908750760ea4298 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:54:44 +0000 Subject: [PATCH 0223/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index b6e369c01fa..e23be5450dd 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:11:50.687543+02:00", + "last_updated": "2021-06-08 21:54:43.738072+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c9cb188cd3bb52e415b8f17a86d93fe46b765154 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 19:58:10 +0000 Subject: [PATCH 0224/1182] Updating the times for Region 06 --- 06.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/06.json b/06.json index 0f48a903bff..c0e1d8143d9 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:15:17.007702+02:00", + "last_updated": "2021-06-08 21:58:10.311227+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:50:00", + "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 86, + "appointment_count": 85, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:35:00", + "prochain_rdv": "2021-06-22 19:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, + "appointment_count": 68, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-15 17:24:00", + "prochain_rdv": "2021-06-23 09:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 53, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-22 12:52:00", + "prochain_rdv": "2021-06-29 18:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 6, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:39:00", + "prochain_rdv": "2021-06-23 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 30, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 20:12:00", + "prochain_rdv": "2021-06-23 20:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1610, + "appointment_count": 1602, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:28:00", + "prochain_rdv": "2021-06-22 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 300, + "appointment_count": 294, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": "2021-06-29 11:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 08:44:00", + "prochain_rdv": "2021-06-24 08:46:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1578, + "appointment_count": 1560, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -1153,6 +1125,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From fd768674ab7b38617ac3f01d15f235d9f3e1802c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:01:43 +0000 Subject: [PATCH 0225/1182] Updating the times for Region 08 --- 08.json | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/08.json b/08.json index bf82c903388..6d617ef8ed1 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:18:53.282049+02:00", + "last_updated": "2021-06-08 22:01:42.603113+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 107, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 09:10:00", + "prochain_rdv": "2021-06-17 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 156, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:25:00", + "prochain_rdv": "2021-06-15 17:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 131, + "appointment_count": 117, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 09:10:00", + "prochain_rdv": "2021-06-16 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 202, + "appointment_count": 170, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0499-489 30" }, - "prochain_rdv": "2021-06-16 09:45:00", + "prochain_rdv": "2021-06-16 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 218, + "appointment_count": 188, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 14:10:00", + "prochain_rdv": "2021-06-15 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 46, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 08:55:00", + "prochain_rdv": "2021-06-16 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 156, + "appointment_count": 149, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-15 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 300, + "appointment_count": 282, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,7 +298,7 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-16 16:48:00", + "prochain_rdv": "2021-06-15 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 8, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:14:00", + "prochain_rdv": "2021-06-14 14:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1890, + "appointment_count": 1828, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 13:42:00", + "prochain_rdv": "2021-06-14 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1403, + "appointment_count": 1392, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +385,7 @@ "prochain_rdv": "2021-06-15 13:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1205, + "appointment_count": 1197, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +410,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:20:00", + "prochain_rdv": "2021-06-17 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 389, + "appointment_count": 369, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 0b8ca4bbf5f53857f4ef8197046004d09165e1f9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:03:00 +0000 Subject: [PATCH 0226/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index 52aae0ec4fe..01a27b47032 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:19:45.849695+02:00", + "last_updated": "2021-06-08 22:02:59.500019+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 08:20:00", + "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:00:00", + "prochain_rdv": "2021-06-15 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 60, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 41, + "appointment_count": 40, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 10:16:00", + "prochain_rdv": "2021-06-10 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4312, + "appointment_count": 4263, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 81bd06d826e0ef167450d4805953f45ea581041e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:03:32 +0000 Subject: [PATCH 0227/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index d93ed1889e8..68afc1d2b97 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:20:12.577228+02:00", + "last_updated": "2021-06-08 22:03:31.938597+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From dab7ae6888f4b022442ee1863372fe91b5023a6d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:04:03 +0000 Subject: [PATCH 0228/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 9246cb1fc94..eb7ead78707 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:20:37.880685+02:00", + "last_updated": "2021-06-08 22:04:03.143180+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 027abac322256cbea5ca984ffe26f5ba28d71d19 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:05:21 +0000 Subject: [PATCH 0229/1182] Updating the times for Region 04 --- 04.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/04.json b/04.json index c7ae6d0d480..30180483cd2 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:21:43.782659+02:00", + "last_updated": "2021-06-08 22:05:20.747640+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-13 10:05:00", + "prochain_rdv": "2021-06-13 10:30:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 1, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 09:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 26, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-13 13:15:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-13 09:45:00", + "prochain_rdv": "2021-06-18 12:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 26, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +133,7 @@ "prochain_rdv": "2021-07-06 19:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 550, + "appointment_count": 558, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-15 10:16:00", + "prochain_rdv": "2021-06-17 11:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2758, + "appointment_count": 2754, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 35dbb37df6292b2b77a886d97fe4283807a1dd7f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:05:50 +0000 Subject: [PATCH 0230/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 10fb6c143de..9c226452af6 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:22:09.883271+02:00", + "last_updated": "2021-06-08 22:05:50.268800+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 079a9269a0444ba487d4ddf5e454cfb1a46dd311 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:06:24 +0000 Subject: [PATCH 0231/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 74d3c3da105..c2849aae95a 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:22:39.599425+02:00", + "last_updated": "2021-06-08 22:06:24.013886+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From fafb52c2a8d7c510422e3ddeacb2a5ef570147d1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:06:56 +0000 Subject: [PATCH 0232/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 530ed6da341..011de9fd7c9 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:23:08.046471+02:00", + "last_updated": "2021-06-08 22:06:56.048402+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 60, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From b70b23ffae618633152a9f7fa936da9fd892343f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:11:14 +0000 Subject: [PATCH 0233/1182] Updating the times for Region 22 --- 22.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/22.json b/22.json index 68af3f54dda..00327bbe801 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:27:09.967937+02:00", + "last_updated": "2021-06-08 22:11:13.633160+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-14 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6636, + "appointment_count": 6657, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:40:00", + "prochain_rdv": "2021-06-21 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 980, + "appointment_count": 952, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 709, + "appointment_count": 682, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:48:00", + "prochain_rdv": "2021-06-21 10:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 602, + "appointment_count": 574, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From a643655a2f244d6c0dda2612bb2d0a25c78544eb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:11:45 +0000 Subject: [PATCH 0234/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 6d98ae3bdd2..c7e41c0cfc0 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:27:39.644806+02:00", + "last_updated": "2021-06-08 22:11:44.567082+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 13f65ebc06a2c7364b1160479838e35bdeb599a1 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 20:27:49 +0000 Subject: [PATCH 0235/1182] Updating the stats --- data/output/stats.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 26fadb05bf4..73400540078 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 13, "total": 19, - "creneaux": 456 + "creneaux": 455 }, "20": { "disponibles": 5, "total": 8, - "creneaux": 3016 + "creneaux": 3003 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 14, + "disponibles": 13, "total": 52, - "creneaux": 3965 + "creneaux": 3915 }, "08": { "disponibles": 15, "total": 30, - "creneaux": 6628 + "creneaux": 6405 }, "07": { "disponibles": 4, "total": 7, - "creneaux": 4420 + "creneaux": 4369 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 6, "total": 6, - "creneaux": 3364 + "creneaux": 3366 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 64 + "creneaux": 60 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 9388 + "creneaux": 9326 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 97, "total": 339, - "creneaux": 45378 + "creneaux": 44976 } } \ No newline at end of file From 052cc3e88200dd5334c232fac35f54728164ce14 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:28:24 +0000 Subject: [PATCH 0236/1182] Updating the times for Region 10 --- 10.json | 92 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/10.json b/10.json index 76e4ded4090..38b8f25a306 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:51:57.041768+02:00", + "last_updated": "2021-06-08 22:28:23.705221+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:10:00", + "prochain_rdv": "2021-06-22 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:50:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 111, + "appointment_count": 114, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-09 12:05:00", + "prochain_rdv": "2021-06-24 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 2, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 35, + "appointment_count": 34, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,7 +158,7 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 09:20:00", + "prochain_rdv": "2021-06-23 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 4, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 10:55:00", + "prochain_rdv": "2021-06-22 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 57, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 15, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-17 10:50:00", + "prochain_rdv": "2021-06-21 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 61, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:05:00", + "prochain_rdv": "2021-06-19 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 110, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": "2021-06-09 10:30:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-24 15:45:00", + "prochain_rdv": "2021-06-17 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 4, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -509,6 +481,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From 20986b3d8dc10122e98e79d06ca1cbf563f49582 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:29:11 +0000 Subject: [PATCH 0237/1182] Updating the times for Region 20 --- 20.json | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/20.json b/20.json index d2f5245916b..3545d662a27 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:52:46.501364+02:00", + "last_updated": "2021-06-08 22:29:10.742974+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-06 10:32:00", + "prochain_rdv": "2021-06-23 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2726, + "appointment_count": 2721, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Doktor.se / Mora", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Mora", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Mora Parken restaurang och konferens, Parkvägen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 14:40:00", + "prochain_rdv": "2021-06-21 09:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2112", + "appointment_count": 2, + "internal_id": "2113", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 162, + "appointment_count": 159, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-22 10:00:00", + "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 50, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 11:15:00", + "prochain_rdv": "2021-06-23 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 60, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -147,16 +147,16 @@ "centres_indisponibles": [ { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, @@ -164,7 +164,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2111", + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -175,16 +175,16 @@ }, { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2115", + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -203,16 +203,16 @@ }, { "departement": "20", - "nom": "Doktor.se / Mora", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Mora", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, @@ -220,7 +220,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2113", + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 7f0a2c3254e54ed4c023bf43ae809b3e776ba82d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:29:40 +0000 Subject: [PATCH 0238/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 9bdc116dffd..1756a162036 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:53:13.904282+02:00", + "last_updated": "2021-06-08 22:29:39.951331+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d421fcc8757ce63d17c5da2713aecb74bef3926e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:30:08 +0000 Subject: [PATCH 0239/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 70e63b9ef62..c76f4e137c9 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:53:39.605089+02:00", + "last_updated": "2021-06-08 22:30:08.156747+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d6a8f36bfc2adf647ad23eae5af6778409066f2c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:30:37 +0000 Subject: [PATCH 0240/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 35448d549e1..ad16532e0d9 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:54:13.454462+02:00", + "last_updated": "2021-06-08 22:30:36.939699+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c5a5bcad566fc398c98dcd92cc2b64e7ab5aa751 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:31:07 +0000 Subject: [PATCH 0241/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index e23be5450dd..2c13a972226 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:54:43.738072+02:00", + "last_updated": "2021-06-08 22:31:07.158306+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9d61c628466c0027a41d7178eb596e7855aac26e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:34:30 +0000 Subject: [PATCH 0242/1182] Updating the times for Region 06 --- 06.json | 130 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 65 insertions(+), 65 deletions(-) diff --git a/06.json b/06.json index c0e1d8143d9..fdac7db7526 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 21:58:10.311227+02:00", + "last_updated": "2021-06-08 22:34:29.649215+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-23 09:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 52, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-29 18:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 2, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:36:00", + "prochain_rdv": "2021-06-24 15:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 27, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-07-01 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 15, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:32:00", + "prochain_rdv": "2021-06-22 15:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 294, + "appointment_count": 297, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:24:00", + "prochain_rdv": "2021-06-30 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 44, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -285,24 +285,24 @@ }, { "departement": "06", - "nom": "Bra Liv Vetlanda vårdcentral", + "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 15.081352462610193, - "latitude": 57.432375422981, - "city": "Vetlanda", + "longitude": 14.706270565158187, + "latitude": 57.64878432193302, + "city": "Nässjö", "cp": "00000" }, "metadata": { - "address": "Norrvägen 2 B, Vetlanda", + "address": "Nyhemsgatan 6, Nässjö", "business_hours": null, - "phone_number": "010-243 20 10" + "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-07-01 11:05:00", + "prochain_rdv": "2021-06-24 08:46:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "2050", + "appointment_count": 1560, + "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -313,24 +313,24 @@ }, { "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", + "nom": "Läkarhuset Tranås (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.706270565158187, - "latitude": 57.64878432193302, - "city": "Nässjö", + "longitude": 14.976018999635242, + "latitude": 58.03084473580738, + "city": "Tranås", "cp": "00000" }, "metadata": { - "address": "Nyhemsgatan 6, Nässjö", + "address": "Vasagatan 1, Tranås", "business_hours": null, - "phone_number": "010-243 39 00" + "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-24 08:46:00", + "prochain_rdv": "2021-06-29 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1560, - "internal_id": "1225", + "appointment_count": 110, + "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -341,24 +341,24 @@ }, { "departement": "06", - "nom": "Läkarhuset Tranås (åldersgrupp eller riksgrupp)", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.976018999635242, - "latitude": 58.03084473580738, - "city": "Tranås", + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Vasagatan 1, Tranås", + "address": "Barnarpsgatan 13, Jönköping", "business_hours": null, - "phone_number": "010-243 98 60" + "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-29 13:40:00", + "prochain_rdv": "2021-06-24 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, - "internal_id": "1236", + "appointment_count": 3, + "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -985,6 +985,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vetlanda vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Norrvägen 2 B, Vetlanda", + "business_hours": null, + "phone_number": "010-243 20 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2050", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", @@ -1349,34 +1377,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From fa97bc02c3f21110fad46cef679366aebcddbba4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:37:59 +0000 Subject: [PATCH 0243/1182] Updating the times for Region 08 --- 08.json | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/08.json b/08.json index 6d617ef8ed1..cfc0d8efc16 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:01:42.603113+02:00", + "last_updated": "2021-06-08 22:37:59.310993+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 99, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 158, + "appointment_count": 124, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 09:15:00", + "prochain_rdv": "2021-06-17 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 156, + "appointment_count": 142, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:35:00", + "prochain_rdv": "2021-06-15 17:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 117, + "appointment_count": 101, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 09:25:00", + "prochain_rdv": "2021-06-16 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 170, + "appointment_count": 161, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0499-489 30" }, - "prochain_rdv": "2021-06-16 10:15:00", + "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 188, + "appointment_count": 163, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 14:15:00", + "prochain_rdv": "2021-06-15 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 39, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 09:50:00", + "prochain_rdv": "2021-06-16 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 149, + "appointment_count": 133, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:25:00", + "prochain_rdv": "2021-06-15 17:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 282, + "appointment_count": 268, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,7 +298,7 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:30:00", + "prochain_rdv": "2021-06-16 16:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 8, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:16:00", + "prochain_rdv": "2021-06-14 14:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1828, + "appointment_count": 1787, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:15:00", + "prochain_rdv": "2021-06-14 13:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1392, + "appointment_count": 1328, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:24:00", + "prochain_rdv": "2021-06-15 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1197, + "appointment_count": 1180, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +410,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:25:00", + "prochain_rdv": "2021-06-17 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 369, + "appointment_count": 351, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 7d5db5b620f552f8119a52eff04c5e7d48d62c40 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:38:50 +0000 Subject: [PATCH 0244/1182] Updating the times for Region 07 --- 07.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/07.json b/07.json index 01a27b47032..0632465c708 100644 --- a/07.json +++ b/07.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 22:02:59.500019+02:00", + "last_updated": "2021-06-08 22:38:49.576286+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 09:10:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 10, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", @@ -21,7 +49,7 @@ "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 5, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-15 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 59, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 15:52:00", + "prochain_rdv": "2021-06-15 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4263, + "appointment_count": 4270, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "07", - "nom": "Garvaren", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 13.9309756, - "latitude": 56.83242, - "city": "Ljungby", - "cp": "34160" - }, - "metadata": { - "address": "Stationsgatan 2, 341 60 Ljungby", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30000, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Nibehallen", From 67cc3924ff229dc2ab1072eaab00fcec74d018e0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:39:14 +0000 Subject: [PATCH 0245/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 68afc1d2b97..102747be35b 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:03:31.938597+02:00", + "last_updated": "2021-06-08 22:39:14.160144+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From bb5a49e000d943843f332cf3c4f8abfff7279fd2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:39:42 +0000 Subject: [PATCH 0246/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index eb7ead78707..c9f5fdaefff 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:04:03.143180+02:00", + "last_updated": "2021-06-08 22:39:41.929802+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 053719ad43b0d660d1b24c7960cf2770cff83935 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:40:56 +0000 Subject: [PATCH 0247/1182] Updating the times for Region 04 --- 04.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/04.json b/04.json index 30180483cd2..dcd9f26168e 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:05:20.747640+02:00", + "last_updated": "2021-06-08 22:40:55.717590+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-13 13:15:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-07-06 19:10:00", + "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 558, + "appointment_count": 545, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 11:24:00", + "prochain_rdv": "2021-06-17 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2754, + "appointment_count": 2748, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From c1eb678b84d6c727bdf1325da2133f17bdaf1e70 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:41:26 +0000 Subject: [PATCH 0248/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 9c226452af6..96077eef08d 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:05:50.268800+02:00", + "last_updated": "2021-06-08 22:41:25.444678+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2febb506630e359a603b7f1da7738a9ba6e2b2db Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:41:52 +0000 Subject: [PATCH 0249/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index c2849aae95a..fe5c2079bc5 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:06:24.013886+02:00", + "last_updated": "2021-06-08 22:41:51.944749+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0f28d72e5a96d9dca40d40148ea833ed5fb7de58 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:42:23 +0000 Subject: [PATCH 0250/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 011de9fd7c9..db9b4a4f029 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:06:56.048402+02:00", + "last_updated": "2021-06-08 22:42:23.367807+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 56, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From e0d62e8dafdc1a392fc38ecd3d9fe4b0928c0e87 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:46:25 +0000 Subject: [PATCH 0251/1182] Updating the times for Region 22 --- 22.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/22.json b/22.json index 00327bbe801..d2ca5c32398 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:11:13.633160+02:00", + "last_updated": "2021-06-08 22:46:24.516442+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:48:00", + "prochain_rdv": "2021-06-10 10:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6657, + "appointment_count": 6706, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 682, + "appointment_count": 630, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:51:00", + "prochain_rdv": "2021-06-21 11:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 574, + "appointment_count": 519, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From 4130331b3e1926734425fc5449b01a6ec5fdb380 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:46:51 +0000 Subject: [PATCH 0252/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index c7e41c0cfc0..7e19db0e848 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:11:44.567082+02:00", + "last_updated": "2021-06-08 22:46:50.709547+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 653562421d37c98f5c70fd48db6c1c70d7d5d2c1 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 20:51:11 +0000 Subject: [PATCH 0253/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 73400540078..d57195566c5 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 12, "total": 19, - "creneaux": 455 + "creneaux": 457 }, "20": { "disponibles": 5, "total": 8, - "creneaux": 3003 + "creneaux": 2992 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 13, "total": 52, - "creneaux": 3915 + "creneaux": 3897 }, "08": { "disponibles": 15, "total": 30, - "creneaux": 6405 + "creneaux": 6122 }, "07": { - "disponibles": 4, + "disponibles": 5, "total": 7, - "creneaux": 4369 + "creneaux": 4384 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 6, + "disponibles": 5, "total": 6, - "creneaux": 3366 + "creneaux": 3346 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 60 + "creneaux": 56 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 9326 + "creneaux": 9268 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 97, + "disponibles": 96, "total": 339, - "creneaux": 44976 + "creneaux": 44599 } } \ No newline at end of file From c1dda6b3ced03c3d6cffad6aa3309b99676bc88c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:51:46 +0000 Subject: [PATCH 0254/1182] Updating the times for Region 10 --- 10.json | 78 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/10.json b/10.json index 38b8f25a306..d88189c72e0 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:28:23.705221+02:00", + "last_updated": "2021-06-08 22:51:46.125561+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-12 08:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 114, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-24 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 17, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-21 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 60, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,7 +270,7 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-22 16:10:00", + "prochain_rdv": "2021-06-10 16:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 25, @@ -298,7 +298,7 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:15:00", + "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 110, @@ -311,6 +311,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Valjehälsan, Sölvesborg", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Herrgårdsvägen 97", + "business_hours": null, + "phone_number": "0456-329 60" + }, + "prochain_rdv": "2021-06-30 15:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "597", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -326,10 +354,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-17 16:00:00", + "prochain_rdv": "2021-06-24 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 1, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -536,34 +564,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Valjehälsan, Sölvesborg", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Herrgårdsvägen 97", - "business_hours": null, - "phone_number": "0456-329 60" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "597", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ] } \ No newline at end of file From 13cdb558531d402739cca6d25cbe5331868e3c58 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:52:32 +0000 Subject: [PATCH 0255/1182] Updating the times for Region 20 --- 20.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/20.json b/20.json index 3545d662a27..fe6dba99c6e 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:29:10.742974+02:00", + "last_updated": "2021-06-08 22:52:32.320560+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 10:48:00", + "prochain_rdv": "2021-06-29 10:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2721, + "appointment_count": 2722, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Mora", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Mora", - "cp": "00000" - }, - "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-21 09:44:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "2113", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -77,7 +49,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 159, + "appointment_count": 157, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 12:55:00", + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 58, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -228,6 +200,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "20", + "nom": "Doktor.se / Mora", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Mora", + "cp": "00000" + }, + "metadata": { + "address": "Mora Parken restaurang och konferens, Parkvägen", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2113", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From 31f22ce8340969c85f912228b29b1db5a42ac83a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:53:00 +0000 Subject: [PATCH 0256/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 1756a162036..69946bd632b 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:29:39.951331+02:00", + "last_updated": "2021-06-08 22:52:59.861956+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5f5b15e0d2359179bd0e0623236ae2f895367aa3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:53:33 +0000 Subject: [PATCH 0257/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index c76f4e137c9..089ec144e78 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:30:08.156747+02:00", + "last_updated": "2021-06-08 22:53:32.827344+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2a7c0b86677fe4e725684a37e8497743634aa388 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:54:02 +0000 Subject: [PATCH 0258/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ad16532e0d9..a315db9a40b 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:30:36.939699+02:00", + "last_updated": "2021-06-08 22:54:02.220870+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 77170abfaff63d81563800895ece89725f58b9ad Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:54:30 +0000 Subject: [PATCH 0259/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 2c13a972226..49a9b549250 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:31:07.158306+02:00", + "last_updated": "2021-06-08 22:54:30.162207+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 195d0e2560e2114a575808154312019d4704872a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 20:57:48 +0000 Subject: [PATCH 0260/1182] Updating the times for Region 06 --- 06.json | 128 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/06.json b/06.json index fdac7db7526..880b8b430ea 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:34:29.649215+02:00", + "last_updated": "2021-06-08 22:57:47.488298+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:55:00", + "prochain_rdv": "2021-06-23 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 85, + "appointment_count": 83, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 19:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 68, + "appointment_count": 64, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-23 09:12:00", + "prochain_rdv": "2021-06-10 10:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 52, @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": "2021-06-29 18:16:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -133,7 +105,7 @@ "prochain_rdv": "2021-06-24 15:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 15, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:27:00", + "prochain_rdv": "2021-06-30 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 42, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -338,34 +310,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": "2021-06-24 11:28:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ @@ -649,6 +593,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1377,6 +1349,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From be456d5940cc8b528cf404fc7d584a01198137ee Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:01:15 +0000 Subject: [PATCH 0261/1182] Updating the times for Region 08 --- 08.json | 80 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/08.json b/08.json index cfc0d8efc16..741020afd98 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:37:59.310993+02:00", + "last_updated": "2021-06-08 23:01:14.703047+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 99, + "appointment_count": 92, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 124, + "appointment_count": 149, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 09:20:00", + "prochain_rdv": "2021-06-17 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 142, + "appointment_count": 135, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 163, + "appointment_count": 156, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:30:00", + "prochain_rdv": "2021-06-15 17:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 268, + "appointment_count": 259, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", - "cp": "00000" - }, - "metadata": { - "address": "Villagatan 4, Borgholm", - "business_hours": null, - "phone_number": "0480-844 44" - }, - "prochain_rdv": "2021-06-16 16:54:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 8, - "internal_id": "2056", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Vaccinationscentral covid-19 Kalmar", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 13:39:00", + "prochain_rdv": "2021-06-15 14:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1328, + "appointment_count": 1320, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +385,7 @@ "prochain_rdv": "2021-06-17 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 351, + "appointment_count": 344, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, @@ -817,6 +789,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Virserums läkarhus", From 5480abd38d1abd2fe35af11100b28fb0af5afa61 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:02:05 +0000 Subject: [PATCH 0262/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index 0632465c708..16b4d9e0710 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:38:49.576286+02:00", + "last_updated": "2021-06-08 23:02:04.206975+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:10:00", + "prochain_rdv": "2021-06-10 08:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 132, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, From 5ce672eee900651d36eff9932cc9e7c0d75f0a8c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:02:35 +0000 Subject: [PATCH 0263/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 102747be35b..87cfb548082 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:39:14.160144+02:00", + "last_updated": "2021-06-08 23:02:35.294188+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 0e383ce229d5eb88a111c725541e191f36fffd72 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:03:03 +0000 Subject: [PATCH 0264/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index c9f5fdaefff..747f291ce59 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:39:41.929802+02:00", + "last_updated": "2021-06-08 23:03:02.748254+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 9ace7b85f9f461bb1ef3b891bd7eb213fecb15d7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:04:14 +0000 Subject: [PATCH 0265/1182] Updating the times for Region 04 --- 04.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04.json b/04.json index dcd9f26168e..283f32b32bf 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:40:55.717590+02:00", + "last_updated": "2021-06-08 23:04:13.543400+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 09:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 24, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-17 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2748, + "appointment_count": 2750, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 63007f41651266ac2aa2c6d98e7470bcb73ca3cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:04:45 +0000 Subject: [PATCH 0266/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 96077eef08d..d71c3a7779c 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:41:25.444678+02:00", + "last_updated": "2021-06-08 23:04:44.430051+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e77cb4d24167966d6053133c2a51b0028c7c7c13 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:05:17 +0000 Subject: [PATCH 0267/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index fe5c2079bc5..17f8287c5ed 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:41:51.944749+02:00", + "last_updated": "2021-06-08 23:05:16.400143+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From da6c446f1fb07ab9b341e675763261f4d8c11b5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:05:49 +0000 Subject: [PATCH 0268/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index db9b4a4f029..977b69ec420 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:42:23.367807+02:00", + "last_updated": "2021-06-08 23:05:48.611020+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 17:45:00", + "prochain_rdv": "2021-06-17 17:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 54, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 848ea85fc66045fae6a8fa120a8b18b966b4f71c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:09:58 +0000 Subject: [PATCH 0269/1182] Updating the times for Region 22 --- 22.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/22.json b/22.json index d2ca5c32398..3f3bb7c0c57 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:46:24.516442+02:00", + "last_updated": "2021-06-08 23:09:57.541422+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 10:12:00", + "prochain_rdv": "2021-06-14 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6706, + "appointment_count": 6664, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:50:00", + "prochain_rdv": "2021-06-09 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 952, + "appointment_count": 994, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:40:00", + "prochain_rdv": "2021-06-09 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 630, + "appointment_count": 629, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:09:00", + "prochain_rdv": "2021-06-21 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 519, + "appointment_count": 546, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From 3bddebdf819413fb7f6ad34c7fb7677d6a7bb7e2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:10:31 +0000 Subject: [PATCH 0270/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 7e19db0e848..2b2c5177319 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:46:50.709547+02:00", + "last_updated": "2021-06-08 23:10:30.439859+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d3991a09496ac35aa942e262eceb1e162fbf7e52 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 21:20:41 +0000 Subject: [PATCH 0271/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index d57195566c5..0e32c7aaa87 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 13, "total": 19, - "creneaux": 457 + "creneaux": 455 }, "20": { - "disponibles": 5, + "disponibles": 4, "total": 8, - "creneaux": 2992 + "creneaux": 2987 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 13, + "disponibles": 11, "total": 52, - "creneaux": 3897 + "creneaux": 3872 }, "08": { - "disponibles": 15, + "disponibles": 14, "total": 30, - "creneaux": 6122 + "creneaux": 6094 }, "07": { "disponibles": 5, "total": 7, - "creneaux": 4384 + "creneaux": 4506 }, "25": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 56 + "creneaux": 54 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 9268 + "creneaux": 9294 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 96, + "disponibles": 93, "total": 339, - "creneaux": 44599 + "creneaux": 44685 } } \ No newline at end of file From ec8ad65e133caa0553317967df5952ac5cba7369 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:21:14 +0000 Subject: [PATCH 0272/1182] Updating the times for Region 10 --- 10.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/10.json b/10.json index d88189c72e0..f0f6eb63924 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:51:46.125561+02:00", + "last_updated": "2021-06-08 23:21:13.789249+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 22, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:10:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 116, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,7 +158,7 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 09:05:00", + "prochain_rdv": "2021-06-23 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 3, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-21 15:30:00", + "prochain_rdv": "2021-06-21 15:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 58, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 109, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Valjehälsan, Sölvesborg", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Herrgårdsvägen 97", - "business_hours": null, - "phone_number": "0456-329 60" - }, - "prochain_rdv": "2021-06-30 15:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "597", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -564,6 +536,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Valjehälsan, Sölvesborg", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Herrgårdsvägen 97", + "business_hours": null, + "phone_number": "0456-329 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "597", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From 831e43a038422ba59cd6a623c68a49e8c1e8465e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:22:01 +0000 Subject: [PATCH 0273/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index fe6dba99c6e..af3e5136f00 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:52:32.320560+02:00", + "last_updated": "2021-06-08 23:22:00.602610+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 10:12:00", + "prochain_rdv": "2021-06-18 11:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2722, + "appointment_count": 2721, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 157, + "appointment_count": 158, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-22 11:20:00", + "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 49, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 57, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 7a305b080f47f07b836d7adf922e0b5199cd245a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:22:29 +0000 Subject: [PATCH 0274/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 69946bd632b..be4d025d855 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:52:59.861956+02:00", + "last_updated": "2021-06-08 23:22:28.934288+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 99bf7180f0a3f6a602b0971e4be15e886e8c103e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:22:57 +0000 Subject: [PATCH 0275/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 089ec144e78..e5bb2991d21 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:53:32.827344+02:00", + "last_updated": "2021-06-08 23:22:57.350777+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0fc09db645754461f860d4dd134015d9e82e7f0d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:23:26 +0000 Subject: [PATCH 0276/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index a315db9a40b..bf04f6d3df7 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:54:02.220870+02:00", + "last_updated": "2021-06-08 23:23:25.941336+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6b7ebf5ae51d9937d67d6f3626d5d7d13861876d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:23:54 +0000 Subject: [PATCH 0277/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 49a9b549250..bd895730312 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:54:30.162207+02:00", + "last_updated": "2021-06-08 23:23:53.993142+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d30aece23efae630ddd7a6bb5a322d2496dfff6c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:27:21 +0000 Subject: [PATCH 0278/1182] Updating the times for Region 06 --- 06.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/06.json b/06.json index 880b8b430ea..856bb2d398f 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 22:57:47.488298+02:00", + "last_updated": "2021-06-08 23:27:21.215465+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 83, + "appointment_count": 84, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 19:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 68, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-10 10:03:00", + "prochain_rdv": "2021-06-23 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 49, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:42:00", + "prochain_rdv": "2021-06-24 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 15, From c63379fef00effec25315ea920e699255957c1ac Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:30:57 +0000 Subject: [PATCH 0279/1182] Updating the times for Region 08 --- 08.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/08.json b/08.json index 741020afd98..99ba88f4366 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:01:14.703047+02:00", + "last_updated": "2021-06-08 23:30:56.673789+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 92, + "appointment_count": 83, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 149, + "appointment_count": 107, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-17 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 135, + "appointment_count": 128, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-16 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 238, + "appointment_count": 229, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 10:15:00", + "prochain_rdv": "2021-06-16 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 133, + "appointment_count": 117, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:18:00", + "prochain_rdv": "2021-06-14 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1787, + "appointment_count": 1753, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:33:00", + "prochain_rdv": "2021-06-14 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1320, + "appointment_count": 1312, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From 91d04c634827895d45482a9d70495a8f99abdf50 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:31:43 +0000 Subject: [PATCH 0280/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index 16b4d9e0710..e05a12ff2b4 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:02:04.206975+02:00", + "last_updated": "2021-06-08 23:31:43.257797+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 14:00:00", + "prochain_rdv": "2021-06-16 10:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4270, + "appointment_count": 4249, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From dd3e54a10957e65ccf39766d2e4077011c50c24d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:32:16 +0000 Subject: [PATCH 0281/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 87cfb548082..40b35ce4908 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:02:35.294188+02:00", + "last_updated": "2021-06-08 23:32:15.732379+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 0ef5107cfb45d36a86953525d09954c54c9e9c48 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:32:45 +0000 Subject: [PATCH 0282/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 747f291ce59..2f9002cb5b4 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:03:02.748254+02:00", + "last_updated": "2021-06-08 23:32:45.069642+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d644217c4723f699b42406cdeb5b26b706674c5a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:34:00 +0000 Subject: [PATCH 0283/1182] Updating the times for Region 04 --- 04.json | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/04.json b/04.json index 283f32b32bf..66d744620f5 100644 --- a/04.json +++ b/04.json @@ -1,28 +1,28 @@ { "version": 1, - "last_updated": "2021-06-08 23:04:13.543400+02:00", + "last_updated": "2021-06-08 23:33:59.701586+02:00", "last_scrap": [], "centres_disponibles": [ { "departement": "04", - "nom": "Vaccina Flen, Flen", + "nom": "Vaccina Gnesta, Gnesta", "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" }, "metadata": { - "address": "Götgatan 6, 642 37 Flen", + "address": "Dansutvägen 2, 646 30 Gnesta", "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-13 10:30:00", + "prochain_rdv": "2021-06-16 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30005, + "appointment_count": 22, + "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -33,24 +33,24 @@ }, { "departement": "04", - "nom": "Vaccina Gnesta, Gnesta", + "nom": "Vaccina Strängnäs, Strängnäs", "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", "location": { - "longitude": 17.326507675212333, - "latitude": 59.03994773439347, - "city": "Gnesta", - "cp": "64630" + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" }, "metadata": { - "address": "Dansutvägen 2, 646 30 Gnesta", + "address": "Seminarievägen 10A, 645 33 Strängnäs", "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:10:00", + "prochain_rdv": "2021-06-10 17:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 24, - "internal_id": 30004, + "appointment_count": 2, + "internal_id": 30003, "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 545, + "appointment_count": 543, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -231,16 +231,16 @@ }, { "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", + "nom": "Vaccina Flen, Flen", "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" }, "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", + "address": "Götgatan 6, 642 37 Flen", "business_hours": null, "phone_number": "010-750 09 45" }, @@ -248,7 +248,7 @@ "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 0, - "internal_id": 30003, + "internal_id": 30005, "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 37f8427a316afa2e400931e928efcd489c404784 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:34:28 +0000 Subject: [PATCH 0284/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index d71c3a7779c..114034ffcb2 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:04:44.430051+02:00", + "last_updated": "2021-06-08 23:34:28.125935+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2937609b5dd97da362ba5908732ff025219219cb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:34:56 +0000 Subject: [PATCH 0285/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 17f8287c5ed..8eb9ea86090 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:05:16.400143+02:00", + "last_updated": "2021-06-08 23:34:55.684068+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7465c5dd2493418a760e7ca807e8d6375984eca1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:35:27 +0000 Subject: [PATCH 0286/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 977b69ec420..f4248e360ba 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:05:48.611020+02:00", + "last_updated": "2021-06-08 23:35:27.119897+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 53, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 25cd0829e4b937cca3e99f5a0fdd919c1ad79991 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:39:26 +0000 Subject: [PATCH 0287/1182] Updating the times for Region 22 --- 22.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/22.json b/22.json index 3f3bb7c0c57..a121100fe35 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 23:09:57.541422+02:00", + "last_updated": "2021-06-08 23:39:26.085107+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-10 15:21:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 13, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:48:00", + "prochain_rdv": "2021-06-10 08:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6664, + "appointment_count": 6720, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-17 12:12:00", + "prochain_rdv": "2021-06-17 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 104, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:40:00", + "prochain_rdv": "2021-06-09 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 629, + "appointment_count": 628, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From 703d55753df498aa6a473a235698b0389d7de985 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:39:57 +0000 Subject: [PATCH 0288/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 2b2c5177319..61139566710 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:10:30.439859+02:00", + "last_updated": "2021-06-08 23:39:56.865107+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6e5c7a1541a5d0633412f8eee8aabcc79c381b13 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 21:48:13 +0000 Subject: [PATCH 0289/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 0e32c7aaa87..8e9e4fb483a 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 12, "total": 19, "creneaux": 455 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2987 + "creneaux": 2985 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 11, "total": 52, - "creneaux": 3872 + "creneaux": 3874 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 6094 + "creneaux": 5969 }, "07": { "disponibles": 5, "total": 7, - "creneaux": 4506 + "creneaux": 4485 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 5, "total": 6, - "creneaux": 3346 + "creneaux": 3343 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 54 + "creneaux": 53 }, "22": { - "disponibles": 6, + "disponibles": 7, "total": 19, - "creneaux": 9294 + "creneaux": 9388 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 93, "total": 339, - "creneaux": 44685 + "creneaux": 44629 } } \ No newline at end of file From 522d34bffc354bb489dd07a664d158fd0a1bcfca Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:48:58 +0000 Subject: [PATCH 0290/1182] Updating the times for Region 10 --- 10.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/10.json b/10.json index f0f6eb63924..7e1fe952ded 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:21:13.789249+02:00", + "last_updated": "2021-06-08 23:48:57.824641+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:25:00", + "prochain_rdv": "2021-06-22 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 10:30:00", + "prochain_rdv": "2021-06-24 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 1, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 10:50:00", + "prochain_rdv": "2021-06-23 10:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 55, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 109, + "appointment_count": 108, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +311,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": "2021-06-23 12:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -481,34 +509,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From 93f08c26b89a957b7d597e472213f5a8b8033c4d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:49:44 +0000 Subject: [PATCH 0291/1182] Updating the times for Region 20 --- 20.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/20.json b/20.json index af3e5136f00..bc3906edce7 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:22:00.602610+02:00", + "last_updated": "2021-06-08 23:49:43.705427+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-18 11:52:00", + "prochain_rdv": "2021-07-06 10:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2721, + "appointment_count": 2720, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-07-09 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 158, - "internal_id": "2102", + "appointment_count": 1, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Mora", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Mora", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Mora Parken restaurang och konferens, Parkvägen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:30:00", + "prochain_rdv": "2021-06-24 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, - "internal_id": "2101", + "appointment_count": 1, + "internal_id": "2113", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 11:20:00", + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, - "internal_id": "2103", + "appointment_count": 158, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,29 +114,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 49, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -147,24 +145,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2111", + "appointment_count": 57, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -172,19 +170,21 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2115", + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -203,16 +203,16 @@ }, { "departement": "20", - "nom": "Doktor.se / Mora", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Mora", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, @@ -220,7 +220,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2113", + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From a492a01597bdba0f9d84374ff35d0269d0b5fa4a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:50:17 +0000 Subject: [PATCH 0292/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index be4d025d855..da53074724f 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:22:28.934288+02:00", + "last_updated": "2021-06-08 23:50:17.201359+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 50907fc31c2d38caf7e4953b65744e6e5c8678fb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:50:46 +0000 Subject: [PATCH 0293/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index e5bb2991d21..d11e5b91f9b 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:22:57.350777+02:00", + "last_updated": "2021-06-08 23:50:46.421856+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c29272d0b0c39b7643c2c24aa1748a5c13fb8018 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:51:17 +0000 Subject: [PATCH 0294/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index bf04f6d3df7..132d0627f27 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:23:25.941336+02:00", + "last_updated": "2021-06-08 23:51:17.131647+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bd27829a57561b56a1a4d8c82ad2f9ee7b456e9c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:51:46 +0000 Subject: [PATCH 0295/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index bd895730312..f185f58fbb7 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:23:53.993142+02:00", + "last_updated": "2021-06-08 23:51:46.051653+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d871202ac9db03e4415284bc72ca493dbfd24d8e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:55:03 +0000 Subject: [PATCH 0296/1182] Updating the times for Region 06 --- 06.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/06.json b/06.json index 856bb2d398f..5fd0dc9a69f 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:27:21.215465+02:00", + "last_updated": "2021-06-08 23:55:02.771011+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -87,6 +87,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": "2021-06-24 11:21:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-24 15:45:00", + "prochain_rdv": "2021-07-01 13:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 9, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -537,34 +565,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", From a861628623a813c8814f11907be76b9037b7e32c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:58:35 +0000 Subject: [PATCH 0297/1182] Updating the times for Region 08 --- 08.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/08.json b/08.json index 99ba88f4366..a3af3e49de0 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:30:56.673789+02:00", + "last_updated": "2021-06-08 23:58:34.889993+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 115, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-17 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 128, + "appointment_count": 119, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 156, + "appointment_count": 149, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-16 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 229, + "appointment_count": 238, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:20:00", + "prochain_rdv": "2021-06-14 14:22:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1753, + "appointment_count": 1728, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-14 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1312, + "appointment_count": 1328, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From 73d5c1f28d1be458aef9c0bcbccd29249c7716b0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:59:24 +0000 Subject: [PATCH 0298/1182] Updating the times for Region 07 --- 07.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/07.json b/07.json index e05a12ff2b4..6b5261def73 100644 --- a/07.json +++ b/07.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-08 23:31:43.257797+02:00", + "last_updated": "2021-06-08 23:59:23.501528+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "07", + "nom": "Aktivitetshuset", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.1297382, + "latitude": 56.5491377, + "city": "Älmhult", + "cp": "34336" + }, + "metadata": { + "address": "Ikeagatan 8, 343 36 Älmhult", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-12 09:00:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 114, + "internal_id": 29997, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Garvaren", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 08:40:00", + "prochain_rdv": "2021-06-10 08:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 132, + "appointment_count": 129, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 4, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,34 +173,6 @@ } ], "centres_indisponibles": [ - { - "departement": "07", - "nom": "Aktivitetshuset", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 14.1297382, - "latitude": 56.5491377, - "city": "Älmhult", - "cp": "34336" - }, - "metadata": { - "address": "Ikeagatan 8, 343 36 Älmhult", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 29997, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Folkets Hus", From e1b24165ead57678fe0e45beb3a8e82433c8e9b5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 21:59:54 +0000 Subject: [PATCH 0299/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 40b35ce4908..01547be594b 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:32:15.732379+02:00", + "last_updated": "2021-06-08 23:59:54.278078+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3bd97e26780e0fd35ba0ff2d96b78431b4fdd169 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:00:48 +0000 Subject: [PATCH 0300/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 2f9002cb5b4..1997df3e3ca 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:32:45.069642+02:00", + "last_updated": "2021-06-09 00:00:48.087066+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 046071261bfafbf730c711364a9d078e0853e489 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:01:56 +0000 Subject: [PATCH 0301/1182] Updating the times for Region 04 --- 04.json | 58 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/04.json b/04.json index 66d744620f5..878734a23dc 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:33:59.701586+02:00", + "last_updated": "2021-06-09 00:01:55.714824+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-10 17:00:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From ac19bcf32322e3c3c5d985836e4144383fcd1bee Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:02:26 +0000 Subject: [PATCH 0302/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 114034ffcb2..7ac3dbcea14 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:34:28.125935+02:00", + "last_updated": "2021-06-09 00:02:26.330722+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cdf97ffe3ece327ca44b294ace0ad038cf90153e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:02:58 +0000 Subject: [PATCH 0303/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 8eb9ea86090..0eb8a57b8a7 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:34:55.684068+02:00", + "last_updated": "2021-06-09 00:02:57.472394+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 19edcac46a9466f9e5770a87442e4df9b85f4fd5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:03:30 +0000 Subject: [PATCH 0304/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index f4248e360ba..21939e7585e 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:35:27.119897+02:00", + "last_updated": "2021-06-09 00:03:29.759870+02:00", "last_scrap": [], "centres_disponibles": [ { From 11fd57dbb1b6ac55ec67571bacc2054a908f1fd3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:07:39 +0000 Subject: [PATCH 0305/1182] Updating the times for Region 22 --- 22.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/22.json b/22.json index a121100fe35..c9218099ef3 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:39:26.085107+02:00", + "last_updated": "2021-06-09 00:07:39.181107+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-10 15:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 26, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-17 18:15:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:35:00", + "prochain_rdv": "2021-06-09 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 994, + "appointment_count": 980, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:45:00", + "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 628, + "appointment_count": 643, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +189,7 @@ "prochain_rdv": "2021-06-21 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 546, + "appointment_count": 2408, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +217,7 @@ "prochain_rdv": "2021-06-09 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 383, + "appointment_count": 426, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From ff136b602e0226e2910ed4652852a218abeffd24 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:08:06 +0000 Subject: [PATCH 0306/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 61139566710..8890ea0a6e4 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:39:56.865107+02:00", + "last_updated": "2021-06-09 00:08:05.729778+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 700a85b4f8482275be21c524724dadddb117d8ea Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 22:22:34 +0000 Subject: [PATCH 0307/1182] Updating the stats --- data/output/stats.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 8e9e4fb483a..fcec6443fe1 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 13, "total": 19, - "creneaux": 455 + "creneaux": 450 }, "20": { - "disponibles": 4, + "disponibles": 6, "total": 8, - "creneaux": 2985 + "creneaux": 2986 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 11, + "disponibles": 12, "total": 52, - "creneaux": 3874 + "creneaux": 3872 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5969 + "creneaux": 5961 }, "07": { - "disponibles": 5, + "disponibles": 6, "total": 7, - "creneaux": 4485 + "creneaux": 4595 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 3343 + "creneaux": 3341 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 53 }, "22": { - "disponibles": 7, + "disponibles": 8, "total": 19, - "creneaux": 9388 + "creneaux": 11321 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 93, + "disponibles": 98, "total": 339, - "creneaux": 44629 + "creneaux": 46656 } } \ No newline at end of file From 71adebb7cfd4b08402029536f01afb732b4117e5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:23:10 +0000 Subject: [PATCH 0308/1182] Updating the times for Region 10 --- 10.json | 78 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/10.json b/10.json index 7e1fe952ded..ccb8b09a254 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:48:57.824641+02:00", + "last_updated": "2021-06-09 00:23:09.517706+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 13:40:00", + "prochain_rdv": "2021-06-24 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:05:00", + "prochain_rdv": "2021-06-22 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 56, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 17, + "appointment_count": 15, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-21 15:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 57, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 16:20:00", + "prochain_rdv": "2021-06-24 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:05:00", + "prochain_rdv": "2021-06-19 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 107, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": "2021-06-23 12:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -509,6 +481,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From 25f9a24525a2fb9891d7cd6a0145b94cabe48f8d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:23:58 +0000 Subject: [PATCH 0309/1182] Updating the times for Region 20 --- 20.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/20.json b/20.json index bc3906edce7..39f457910aa 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:49:43.705427+02:00", + "last_updated": "2021-06-09 00:23:58.129398+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-06 10:32:00", + "prochain_rdv": "2021-07-05 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2720, + "appointment_count": 2718, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 15:52:00", + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2111", + "appointment_count": 217, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Mora", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Mora", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-24 11:00:00", + "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2113", + "appointment_count": 48, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-06-23 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 158, - "internal_id": "2102", + "appointment_count": 55, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,27 +114,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:30:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, - "internal_id": "2101", + "appointment_count": 0, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +147,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 11:20:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, - "internal_id": "2103", + "appointment_count": 0, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -170,21 +172,19 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2112", + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -203,16 +203,16 @@ }, { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Doktor.se / Mora", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Mora", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Mora Parken restaurang och konferens, Parkvägen", "business_hours": null, "phone_number": "" }, @@ -220,7 +220,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2115", + "internal_id": "2113", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 7f4d2f124cd552cf59493c9c90865213caf83197 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:24:29 +0000 Subject: [PATCH 0310/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index da53074724f..c56ca786749 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:50:17.201359+02:00", + "last_updated": "2021-06-09 00:24:29.442605+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0778024040bae8de9e05fc8400bf4f0aff564787 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:24:55 +0000 Subject: [PATCH 0311/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index d11e5b91f9b..891e4327b1c 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:50:46.421856+02:00", + "last_updated": "2021-06-09 00:24:55.200492+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2f86570e34405c486ccd2d2ca538e089bb1b0a96 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:25:24 +0000 Subject: [PATCH 0312/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 132d0627f27..cb747476ab7 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:51:17.131647+02:00", + "last_updated": "2021-06-09 00:25:23.912679+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8e6b77b41f726e58e2572aab3b49e17241cb5c18 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:25:50 +0000 Subject: [PATCH 0313/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index f185f58fbb7..afbb2d1c7f8 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:51:46.051653+02:00", + "last_updated": "2021-06-09 00:25:49.979945+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 698835b2d67c281630238a91c6e9fddd491725bd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:29:25 +0000 Subject: [PATCH 0314/1182] Updating the times for Region 06 --- 06.json | 184 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 92 insertions(+), 92 deletions(-) diff --git a/06.json b/06.json index 5fd0dc9a69f..84efc7339e4 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:55:02.771011+02:00", + "last_updated": "2021-06-09 00:29:24.903876+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:05:00", + "prochain_rdv": "2021-06-23 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 84, + "appointment_count": 83, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-07-01 13:54:00", + "prochain_rdv": "2021-07-01 13:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 12, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-30 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 48, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 20:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1602, + "appointment_count": 1708, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,6 +227,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.410842243364137, + "latitude": 57.16360501461046, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Torggatan 6, Smålandsstenar", + "business_hours": null, + "phone_number": "010-244 22 35" + }, + "prochain_rdv": "2021-06-23 08:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 291, + "internal_id": "1203", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Sävsjö vårdcentral", @@ -273,7 +301,7 @@ "prochain_rdv": "2021-06-30 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 40, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +339,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Gislehälsan, Gislaved (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.538429392319102, + "latitude": 57.301413472495824, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Regeringsgatan 20, Gislaved", + "business_hours": null, + "phone_number": "010-244 29 49" + }, + "prochain_rdv": "2021-06-22 09:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 60, + "internal_id": "1223", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Läkarhuset Tranås (åldersgrupp eller riksgrupp)", @@ -338,6 +394,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": "2021-06-18 15:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -901,34 +985,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 13.410842243364137, - "latitude": 57.16360501461046, - "city": "Gislaved", - "cp": "00000" - }, - "metadata": { - "address": "Torggatan 6, Smålandsstenar", - "business_hours": null, - "phone_number": "010-244 22 35" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1203", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Vaggeryd vårdcentral", @@ -1209,34 +1265,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Gislehälsan, Gislaved (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 13.538429392319102, - "latitude": 57.301413472495824, - "city": "Gislaved", - "cp": "00000" - }, - "metadata": { - "address": "Regeringsgatan 20, Gislaved", - "business_hours": null, - "phone_number": "010-244 29 49" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1223", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Läkarhuset Tranås (18+ LSS/assistans/vårdnära)", @@ -1349,34 +1377,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From a25d2175f6b517fc002419e724747fc958375683 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:32:53 +0000 Subject: [PATCH 0315/1182] Updating the times for Region 08 --- 08.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/08.json b/08.json index a3af3e49de0..f426ceef89c 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:58:34.889993+02:00", + "last_updated": "2021-06-09 00:32:51.643362+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 115, + "appointment_count": 99, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 161, + "appointment_count": 154, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:35:00", + "prochain_rdv": "2021-06-15 17:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 259, + "appointment_count": 252, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-14 14:22:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1728, + "appointment_count": 1753, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +357,7 @@ "prochain_rdv": "2021-06-15 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1180, + "appointment_count": 1171, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:15:00", + "prochain_rdv": "2021-06-17 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 344, + "appointment_count": 337, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From c0fa6153adccfd36d4b692527149192965b6e8f9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:33:46 +0000 Subject: [PATCH 0316/1182] Updating the times for Region 07 --- 07.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/07.json b/07.json index 6b5261def73..f10f06002c1 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:59:23.501528+02:00", + "last_updated": "2021-06-09 00:33:46.345534+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "07", + "nom": "Folkets Hus", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.5515003, + "latitude": 56.9011986, + "city": "Alvesta", + "cp": "34230" + }, + "metadata": { + "address": "Allbogatan 15, 342 30 Alvesta", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-12 16:05:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 40, + "internal_id": 29999, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Garvaren", @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-10 08:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 129, + "appointment_count": 305, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 9, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +133,7 @@ "prochain_rdv": "2021-06-15 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, + "appointment_count": 63, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 55, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "07", - "nom": "Folkets Hus", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 14.5515003, - "latitude": 56.9011986, - "city": "Alvesta", - "cp": "34230" - }, - "metadata": { - "address": "Allbogatan 15, 342 30 Alvesta", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 29999, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Nibehallen", From f1d3406ae3ff369874d6b35037e52facbc4d6a3f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:34:16 +0000 Subject: [PATCH 0317/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 01547be594b..921ce97540a 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-08 23:59:54.278078+02:00", + "last_updated": "2021-06-09 00:34:16.155254+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8147934ad0ab90a89428e811e5034a7a0e3c5080 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:34:47 +0000 Subject: [PATCH 0318/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 1997df3e3ca..93b86139bb3 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:00:48.087066+02:00", + "last_updated": "2021-06-09 00:34:47.197672+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d1676a62f2ea821784e7dda8f1618a83b628811a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:36:00 +0000 Subject: [PATCH 0319/1182] Updating the times for Region 04 --- 04.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04.json b/04.json index 878734a23dc..08d5be1ea56 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:01:55.714824+02:00", + "last_updated": "2021-06-09 00:36:00.060159+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-18 12:00:00", + "prochain_rdv": "2021-06-22 15:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 25, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 543, + "appointment_count": 545, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-17 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2750, + "appointment_count": 2748, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From d22df5dc5749db9d6efad6498af9d3fd755c7d9d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:36:29 +0000 Subject: [PATCH 0320/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 7ac3dbcea14..20fbf869c60 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:02:26.330722+02:00", + "last_updated": "2021-06-09 00:36:28.679351+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bdafdf80f45b21f6d997cc29e97b54a063daff60 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:36:57 +0000 Subject: [PATCH 0321/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 0eb8a57b8a7..d0eb684479a 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:02:57.472394+02:00", + "last_updated": "2021-06-09 00:36:57.086526+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From da82242be25ef62b3de8b2ef02e2be272f48c78a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:37:29 +0000 Subject: [PATCH 0322/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 21939e7585e..c91fff90b9e 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:03:29.759870+02:00", + "last_updated": "2021-06-09 00:37:28.478671+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 51, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From ba9bcfd2adba79ca61fcd9bb84bc59382606b464 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:41:34 +0000 Subject: [PATCH 0323/1182] Updating the times for Region 22 --- 22.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/22.json b/22.json index c9218099ef3..3f22f2d8f31 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:07:39.181107+02:00", + "last_updated": "2021-06-09 00:41:34.229111+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 15:21:00", + "prochain_rdv": "2021-06-10 15:49:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 13, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 08:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6720, + "appointment_count": 6706, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:40:00", + "prochain_rdv": "2021-06-09 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 643, + "appointment_count": 642, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:54:00", + "prochain_rdv": "2021-06-21 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2408, + "appointment_count": 2380, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From 4512b51bdeb89b99aad88de061d09ee434e12016 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:42:02 +0000 Subject: [PATCH 0324/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 8890ea0a6e4..294f0394639 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:08:05.729778+02:00", + "last_updated": "2021-06-09 00:42:02.164596+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9a575be8248e7f2c5516e50685d81a17621c67df Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 22:49:33 +0000 Subject: [PATCH 0325/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index fcec6443fe1..5548ad7e3d8 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 12, "total": 19, - "creneaux": 450 + "creneaux": 446 }, "20": { - "disponibles": 6, + "disponibles": 4, "total": 8, - "creneaux": 2986 + "creneaux": 3038 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 12, + "disponibles": 15, "total": 52, - "creneaux": 3872 + "creneaux": 4348 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5961 + "creneaux": 5940 }, "07": { - "disponibles": 6, + "disponibles": 7, "total": 7, - "creneaux": 4595 + "creneaux": 4835 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3341 + "creneaux": 3340 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 53 + "creneaux": 51 }, "22": { "disponibles": 8, "total": 19, - "creneaux": 11321 + "creneaux": 11265 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 98, + "disponibles": 99, "total": 339, - "creneaux": 46656 + "creneaux": 47340 } } \ No newline at end of file From baced72710c9d05879b08770bdef8ec45b267c87 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:50:08 +0000 Subject: [PATCH 0326/1182] Updating the times for Region 10 --- 10.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/10.json b/10.json index ccb8b09a254..d8621a8f9e8 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:23:09.517706+02:00", + "last_updated": "2021-06-09 00:50:07.894102+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:10:00", + "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 108, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From e460b8e078601a4df5a7d668f173143cf164f843 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:51:05 +0000 Subject: [PATCH 0327/1182] Updating the times for Region 20 --- 20.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/20.json b/20.json index 39f457910aa..5f76acbdd85 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:23:58.129398+02:00", + "last_updated": "2021-06-09 00:51:05.322554+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 11:28:00", + "prochain_rdv": "2021-06-29 14:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2718, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 49, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 12:55:00", + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 56, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From feef28a6f13f19e76a145ed92d72a0e491317329 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:51:59 +0000 Subject: [PATCH 0328/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index c56ca786749..292bed1787c 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:24:29.442605+02:00", + "last_updated": "2021-06-09 00:51:58.463467+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c346bc61e66c8574218d9d53d46ddfdd2727b385 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:52:27 +0000 Subject: [PATCH 0329/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 891e4327b1c..3d1abbf95e4 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:24:55.200492+02:00", + "last_updated": "2021-06-09 00:52:26.998966+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 180c1ca916eb49e55163203b1669ecf74aa0a1ff Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:52:56 +0000 Subject: [PATCH 0330/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index cb747476ab7..4b7697d9681 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:25:23.912679+02:00", + "last_updated": "2021-06-09 00:52:55.854320+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c95e79b5b88db3ad1ae24fe6368bac70ac9e1f37 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:53:28 +0000 Subject: [PATCH 0331/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index afbb2d1c7f8..7e2a62034bd 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:25:49.979945+02:00", + "last_updated": "2021-06-09 00:53:28.159793+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 10854d57607b3be0b87f155fd7bc285445fecbf7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 22:56:59 +0000 Subject: [PATCH 0332/1182] Updating the times for Region 06 --- 06.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/06.json b/06.json index 84efc7339e4..9a1041f31df 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:29:24.903876+02:00", + "last_updated": "2021-06-09 00:56:58.672957+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:10:00", + "prochain_rdv": "2021-06-23 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 83, + "appointment_count": 84, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, From 9b6db390c7f38639e4b3e566967b956162827374 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:00:34 +0000 Subject: [PATCH 0333/1182] Updating the times for Region 08 --- 08.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/08.json b/08.json index f426ceef89c..ff92a3cb250 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:32:51.643362+02:00", + "last_updated": "2021-06-09 01:00:34.081140+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 154, + "appointment_count": 161, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-16 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 117, + "appointment_count": 108, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +357,7 @@ "prochain_rdv": "2021-06-15 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1171, + "appointment_count": 1162, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From fae0b768acceb78e8c572241e5fc9e900915bc56 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:01:40 +0000 Subject: [PATCH 0334/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index f10f06002c1..257dc005c9e 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:33:46.345534+02:00", + "last_updated": "2021-06-09 01:01:40.047632+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 214, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 16:05:00", + "prochain_rdv": "2021-06-12 10:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 118, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 08:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 305, + "appointment_count": 304, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:52:00", + "prochain_rdv": "2021-06-09 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4249, + "appointment_count": 4256, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 11605ecb8640e4591032e1258b3f2757c3926adc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:02:16 +0000 Subject: [PATCH 0335/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 921ce97540a..c4d44fd03bb 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:34:16.155254+02:00", + "last_updated": "2021-06-09 01:02:16.423972+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 514c477ac9022a7d8753f1b8907092ba5b2eb935 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:02:42 +0000 Subject: [PATCH 0336/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 93b86139bb3..cac0e48aab9 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:34:47.197672+02:00", + "last_updated": "2021-06-09 01:02:41.805132+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 9337131c8aa82e9382f8fd7a3f2e767e1da29e9a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:03:57 +0000 Subject: [PATCH 0337/1182] Updating the times for Region 04 --- 04.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.json b/04.json index 08d5be1ea56..359ce38fca9 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:36:00.060159+02:00", + "last_updated": "2021-06-09 01:03:56.953257+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 545, + "appointment_count": 543, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, From 6e94b822e5922317a2510759ddc065d45e202095 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:04:23 +0000 Subject: [PATCH 0338/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 20fbf869c60..c29cf35ec83 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:36:28.679351+02:00", + "last_updated": "2021-06-09 01:04:23.461370+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From af3dc2c4e2c26f2ed46db99ec639007ec492b23c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:04:52 +0000 Subject: [PATCH 0339/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index d0eb684479a..2cd6e7d7b44 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:36:57.086526+02:00", + "last_updated": "2021-06-09 01:04:51.928057+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b852f7c9cc5a2819d024c73f07819a20cb3881ee Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:05:24 +0000 Subject: [PATCH 0340/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index c91fff90b9e..efde911b036 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:37:28.478671+02:00", + "last_updated": "2021-06-09 01:05:23.514740+02:00", "last_scrap": [], "centres_disponibles": [ { From 4f1482609d6b33dcd7b33182ead07ee199a0114c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:09:32 +0000 Subject: [PATCH 0341/1182] Updating the times for Region 22 --- 22.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/22.json b/22.json index 3f22f2d8f31..3604f78432f 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:41:34.229111+02:00", + "last_updated": "2021-06-09 01:09:31.481387+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 15:49:00", + "prochain_rdv": "2021-06-10 15:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 26, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 08:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6706, + "appointment_count": 6720, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:40:00", + "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 642, + "appointment_count": 643, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:12:00", + "prochain_rdv": "2021-06-21 11:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2380, + "appointment_count": 2408, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From d3f1a7ae4829ab7857737bd81ee8a94d946a0bac Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:09:57 +0000 Subject: [PATCH 0342/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 294f0394639..ebfeca781ba 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:42:02.164596+02:00", + "last_updated": "2021-06-09 01:09:57.450530+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 36499b4e6445382d61573cac7a73de0e30855f14 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 23:23:16 +0000 Subject: [PATCH 0343/1182] Updating the stats --- data/output/stats.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 5548ad7e3d8..bd972f8cd65 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 446 + "creneaux": 447 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3038 + "creneaux": 3040 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 15, "total": 52, - "creneaux": 4348 + "creneaux": 4349 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5940 + "creneaux": 5929 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4835 + "creneaux": 5019 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3340 + "creneaux": 3338 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 8, "total": 19, - "creneaux": 11265 + "creneaux": 11321 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 99, "total": 339, - "creneaux": 47340 + "creneaux": 47571 } } \ No newline at end of file From adde094186ba841029948faf68e7c606c0604438 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:23:49 +0000 Subject: [PATCH 0344/1182] Updating the times for Region 10 --- 10.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10.json b/10.json index d8621a8f9e8..a717aa16e42 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:50:07.894102+02:00", + "last_updated": "2021-06-09 01:23:48.884962+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 105, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 20c407a305bbdb0173f9b272d7cba92ac70b2e4e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:24:33 +0000 Subject: [PATCH 0345/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index 5f76acbdd85..b713689ad38 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:51:05.322554+02:00", + "last_updated": "2021-06-09 01:24:33.293811+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 14:32:00", + "prochain_rdv": "2021-07-05 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2718, + "appointment_count": 2717, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:30:00", + "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 11:20:00", + "prochain_rdv": "2021-06-24 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 54, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 9057a03f97fc675102cb07527a9c6d9a716d19d8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:25:03 +0000 Subject: [PATCH 0346/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 292bed1787c..e66bc8fb78c 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:51:58.463467+02:00", + "last_updated": "2021-06-09 01:25:03.335037+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1dbbb361b7723d01447534d7a0b440d584b89dad Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:25:32 +0000 Subject: [PATCH 0347/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 3d1abbf95e4..b064a5c1786 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:52:26.998966+02:00", + "last_updated": "2021-06-09 01:25:31.609517+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 112d9a796e39e1d6ea1c7e13f499f7cdfeb595f1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:26:04 +0000 Subject: [PATCH 0348/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 4b7697d9681..36ca705d051 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:52:55.854320+02:00", + "last_updated": "2021-06-09 01:26:03.637478+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 68cc8a28586ff795d16821aef72cd3f692e57e0f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:26:34 +0000 Subject: [PATCH 0349/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 7e2a62034bd..447f2378981 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:53:28.159793+02:00", + "last_updated": "2021-06-09 01:26:33.522047+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 64aa58a4a3ab6e381bbb606fe6b6d0244fe52e60 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:30:01 +0000 Subject: [PATCH 0350/1182] Updating the times for Region 06 --- 06.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/06.json b/06.json index 9a1041f31df..64d11606a0c 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 00:56:58.672957+02:00", + "last_updated": "2021-06-09 01:30:00.789020+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-30 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 50, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-23 08:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 291, + "appointment_count": 294, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -394,34 +394,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": "2021-06-18 15:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ @@ -1377,6 +1349,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 37e2531d72afcec8ae36da843851e2961d712424 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:33:37 +0000 Subject: [PATCH 0351/1182] Updating the times for Region 08 --- 08.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/08.json b/08.json index ff92a3cb250..b15f2044d52 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:00:34.081140+02:00", + "last_updated": "2021-06-09 01:33:37.191403+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 161, + "appointment_count": 154, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-14 14:22:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1753, + "appointment_count": 1745, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, From 8205e2860291a5a23dc14ee908f1e7426e8f93f2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:34:27 +0000 Subject: [PATCH 0352/1182] Updating the times for Region 07 --- 07.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/07.json b/07.json index 257dc005c9e..17d2692f7ca 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:01:40.047632+02:00", + "last_updated": "2021-06-09 01:34:27.021559+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 214, + "appointment_count": 215, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-12 10:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 118, + "appointment_count": 106, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 08:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 304, + "appointment_count": 303, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-09 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4256, + "appointment_count": 4263, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From ac2ee31cb1661375877e1d9cc4c72fca0e8bc14d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:34:54 +0000 Subject: [PATCH 0353/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index c4d44fd03bb..89b086cb4a0 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:02:16.423972+02:00", + "last_updated": "2021-06-09 01:34:54.304351+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 42d3735202ff68a9635575fb30369994fde0752d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:35:20 +0000 Subject: [PATCH 0354/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index cac0e48aab9..6710b957e83 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:02:41.805132+02:00", + "last_updated": "2021-06-09 01:35:19.480391+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 43da5e321c0f770ae04fa97f97c0b4fe4ad7fb06 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:36:32 +0000 Subject: [PATCH 0355/1182] Updating the times for Region 04 --- 04.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.json b/04.json index 359ce38fca9..76cd78b2a3f 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:03:56.953257+02:00", + "last_updated": "2021-06-09 01:36:31.814874+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 543, + "appointment_count": 541, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, From 88427ab31232d835c25209f465d9f2a9a086e007 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:36:59 +0000 Subject: [PATCH 0356/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index c29cf35ec83..2a9bf66a5db 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:04:23.461370+02:00", + "last_updated": "2021-06-09 01:36:58.983320+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2464ee6e1f56a00be44fe5ba00606e69f8eb95c2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:37:23 +0000 Subject: [PATCH 0357/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 2cd6e7d7b44..fc03b2a71f6 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:04:51.928057+02:00", + "last_updated": "2021-06-09 01:37:23.225806+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6a55c827e51f889bed2381cb913fbefec911b314 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:37:52 +0000 Subject: [PATCH 0358/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index efde911b036..fecc440b251 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:05:23.514740+02:00", + "last_updated": "2021-06-09 01:37:51.899475+02:00", "last_scrap": [], "centres_disponibles": [ { From 961f39a20ec7791da843eafd9a22625a1b6dc96d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:42:07 +0000 Subject: [PATCH 0359/1182] Updating the times for Region 22 --- 22.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/22.json b/22.json index 3604f78432f..fe6b0eba84b 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:09:31.481387+02:00", + "last_updated": "2021-06-09 01:42:06.134704+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 08:55:00", + "prochain_rdv": "2021-06-21 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 980, + "appointment_count": 966, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:09:00", + "prochain_rdv": "2021-06-21 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2408, + "appointment_count": 2394, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From ec32a9faf8d9cbbe27793028e74b2943f3420ad0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:42:34 +0000 Subject: [PATCH 0360/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index ebfeca781ba..f1ff4d984ce 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:09:57.450530+02:00", + "last_updated": "2021-06-09 01:42:33.963275+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c09ac08f964ce8d276fc5bc5493df0f900b7ac5c Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Tue, 8 Jun 2021 23:47:42 +0000 Subject: [PATCH 0361/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index bd972f8cd65..0711c0518eb 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 447 + "creneaux": 444 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3040 + "creneaux": 3036 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 15, + "disponibles": 14, "total": 52, - "creneaux": 4349 + "creneaux": 4351 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5929 + "creneaux": 5914 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 5019 + "creneaux": 5014 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3338 + "creneaux": 3336 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 8, "total": 19, - "creneaux": 11321 + "creneaux": 11293 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 99, + "disponibles": 98, "total": 339, - "creneaux": 47571 + "creneaux": 47516 } } \ No newline at end of file From fbce1a491022f11f38c1823e06d8a02e64be8a06 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:48:10 +0000 Subject: [PATCH 0362/1182] Updating the times for Region 10 --- 10.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/10.json b/10.json index a717aa16e42..e243bd18c4b 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:23:48.884962+02:00", + "last_updated": "2021-06-09 01:48:09.889623+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 10:50:00", + "prochain_rdv": "2021-06-23 10:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 55, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 105, + "appointment_count": 106, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From d613e1725ac255abd020881d21eb0e272c670d78 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:48:57 +0000 Subject: [PATCH 0363/1182] Updating the times for Region 20 --- 20.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/20.json b/20.json index b713689ad38..f56f72543ff 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:24:33.293811+02:00", + "last_updated": "2021-06-09 01:48:56.555749+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:50:00", + "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 49, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, From 791392f1169589799c1c635b9d0d3f8a92bf6f8f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:49:21 +0000 Subject: [PATCH 0364/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index e66bc8fb78c..9d3bd78b035 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:25:03.335037+02:00", + "last_updated": "2021-06-09 01:49:21.259204+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a08644954c1a5f229f375b5e69be18eda0ad8fd4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:49:46 +0000 Subject: [PATCH 0365/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index b064a5c1786..4901bcd93d8 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:25:31.609517+02:00", + "last_updated": "2021-06-09 01:49:46.252312+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a97e9450bd74bc4331c2dddaa2f593fb128406de Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:50:18 +0000 Subject: [PATCH 0366/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 36ca705d051..b522ba4a27e 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:26:03.637478+02:00", + "last_updated": "2021-06-09 01:50:17.464978+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d5780403145d5bb598268f87d0a8c42afa41cd95 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:50:43 +0000 Subject: [PATCH 0367/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 447f2378981..0116396f30c 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:26:33.522047+02:00", + "last_updated": "2021-06-09 01:50:43.016069+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5d9e7fe0594d425bf7c03f01f4f1b6f7db61796e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:54:00 +0000 Subject: [PATCH 0368/1182] Updating the times for Region 06 --- 06.json | 58 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/06.json b/06.json index 64d11606a0c..6f6e027af51 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:30:00.789020+02:00", + "last_updated": "2021-06-09 01:53:59.850701+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -394,6 +394,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": "2021-06-18 15:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -1349,34 +1377,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 571757af6a909029c8097a9c345d8cb207ac4194 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:57:41 +0000 Subject: [PATCH 0369/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index b15f2044d52..e913a73133a 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:33:37.191403+02:00", + "last_updated": "2021-06-09 01:57:40.191944+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 99, + "appointment_count": 91, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, From a7d03a1c17bb4d8fa4583a02b6354cea39b764b2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:58:30 +0000 Subject: [PATCH 0370/1182] Updating the times for Region 07 --- 07.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07.json b/07.json index 17d2692f7ca..aec81083e9c 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:34:27.021559+02:00", + "last_updated": "2021-06-09 01:58:29.597155+02:00", "last_scrap": [], "centres_disponibles": [ { From a8bb6e1e1a4c4eb9172c2ea502ea0badb53b9a68 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:58:54 +0000 Subject: [PATCH 0371/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 89b086cb4a0..32ce4a5d627 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:34:54.304351+02:00", + "last_updated": "2021-06-09 01:58:54.170614+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7f3441a8a4463dba1a805c4e70b757cc5b7ca50a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Tue, 8 Jun 2021 23:59:19 +0000 Subject: [PATCH 0372/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 6710b957e83..17104e6777e 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:35:19.480391+02:00", + "last_updated": "2021-06-09 01:59:19.070029+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c52fd648100f3c8eba8fd3909f5140e9aeacb95f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 00:00:32 +0000 Subject: [PATCH 0373/1182] Updating the times for Region 04 --- 04.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04.json b/04.json index 76cd78b2a3f..42c5196963b 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:36:31.814874+02:00", + "last_updated": "2021-06-09 02:00:31.741751+02:00", "last_scrap": [], "centres_disponibles": [ { From beb19dd5501112708f09641886dea30717e0686c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 00:01:03 +0000 Subject: [PATCH 0374/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 2a9bf66a5db..84640855155 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:36:58.983320+02:00", + "last_updated": "2021-06-09 02:01:02.530283+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 07ae2675f2c47cbbec72adf0a8f5f2c13cdda1e8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 00:01:30 +0000 Subject: [PATCH 0375/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index fc03b2a71f6..3f6092092ec 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:37:23.225806+02:00", + "last_updated": "2021-06-09 02:01:29.606564+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 83beda15568b2fd98cb5924ee9d67ee4f78940d4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 00:02:00 +0000 Subject: [PATCH 0376/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index fecc440b251..5ec0183daa6 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:37:51.899475+02:00", + "last_updated": "2021-06-09 02:02:00.136183+02:00", "last_scrap": [], "centres_disponibles": [ { From b34f2653e3d491cdee8b771ce6fa24eea5cc0fe3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 00:06:10 +0000 Subject: [PATCH 0377/1182] Updating the times for Region 22 --- 22.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/22.json b/22.json index fe6b0eba84b..09cc05a8773 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:42:06.134704+02:00", + "last_updated": "2021-06-09 02:06:09.375171+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:40:00", + "prochain_rdv": "2021-06-09 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 966, + "appointment_count": 980, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 643, + "appointment_count": 630, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, From 03f8e8ebfc3892ebd0e5944d5b7ac86fe43a30bd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 00:06:37 +0000 Subject: [PATCH 0378/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index f1ff4d984ce..8c755dca53b 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:42:33.963275+02:00", + "last_updated": "2021-06-09 02:06:36.783074+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a539084b08d611a37cfc48d75eb5fe83b93dacab Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 01:13:12 +0000 Subject: [PATCH 0379/1182] Updating the stats --- data/output/stats.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 0711c0518eb..fd25822da81 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -7,7 +7,7 @@ "20": { "disponibles": 4, "total": 8, - "creneaux": 3036 + "creneaux": 3037 }, "09": { "disponibles": 0, @@ -30,14 +30,14 @@ "creneaux": 0 }, "06": { - "disponibles": 14, + "disponibles": 15, "total": 52, - "creneaux": 4351 + "creneaux": 4354 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5914 + "creneaux": 5906 }, "07": { "disponibles": 7, @@ -82,7 +82,7 @@ "22": { "disponibles": 8, "total": 19, - "creneaux": 11293 + "creneaux": 11294 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 98, + "disponibles": 99, "total": 339, - "creneaux": 47516 + "creneaux": 47513 } } \ No newline at end of file From e99d5ae7e5c5c567fd3f5aeb0afc0dc39a0a0b5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:13:50 +0000 Subject: [PATCH 0380/1182] Updating the times for Region 10 --- 10.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/10.json b/10.json index e243bd18c4b..d381df9b580 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:48:09.889623+02:00", + "last_updated": "2021-06-09 03:13:49.958682+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:05:00", + "prochain_rdv": "2021-06-22 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 56, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 106, + "appointment_count": 107, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From dba4f841d05908fe53f7f67174d5ec26b9584a0c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:14:36 +0000 Subject: [PATCH 0381/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index f56f72543ff..21ed2146135 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:48:56.555749+02:00", + "last_updated": "2021-06-09 03:14:36.206873+02:00", "last_scrap": [], "centres_disponibles": [ { From e426dd4d2c6a1ee4b0d24bf0a5ae28e4e7bd7de3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:15:06 +0000 Subject: [PATCH 0382/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 9d3bd78b035..8c3addbca53 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:49:21.259204+02:00", + "last_updated": "2021-06-09 03:15:05.756972+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c94f5074fe9e74fac64de906c7a7f3a2fe281ed1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:15:36 +0000 Subject: [PATCH 0383/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 4901bcd93d8..885e2a39d86 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:49:46.252312+02:00", + "last_updated": "2021-06-09 03:15:36.235710+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 36fa2927091afcb46a560ff4ccb5e8814c06e186 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:16:05 +0000 Subject: [PATCH 0384/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index b522ba4a27e..063297a7c08 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:50:17.464978+02:00", + "last_updated": "2021-06-09 03:16:05.238205+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 27f23c1008215b3ae45c7492dbd03ceb29c3255b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:16:34 +0000 Subject: [PATCH 0385/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 0116396f30c..80f6cb8129d 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:50:43.016069+02:00", + "last_updated": "2021-06-09 03:16:33.978942+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From be7eaea8bf3a8dca45bf17f2bdf255e7600e9212 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:19:56 +0000 Subject: [PATCH 0386/1182] Updating the times for Region 06 --- 06.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/06.json b/06.json index 6f6e027af51..f4e5582573d 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:53:59.850701+02:00", + "last_updated": "2021-06-09 03:19:55.793845+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 15:10:00", + "prochain_rdv": "2021-06-30 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 48, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, From 4103fb6153003999d55b6fb076a6d006c211f679 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:23:22 +0000 Subject: [PATCH 0387/1182] Updating the times for Region 08 --- 08.json | 58 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/08.json b/08.json index e913a73133a..94a1e400846 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:57:40.191944+02:00", + "last_updated": "2021-06-09 03:23:21.830079+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -283,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": "2021-06-16 16:18:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 8, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Vaccinationscentral covid-19 Kalmar", @@ -789,34 +817,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", - "cp": "00000" - }, - "metadata": { - "address": "Villagatan 4, Borgholm", - "business_hours": null, - "phone_number": "0480-844 44" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2056", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Virserums läkarhus", From c037611156b2ea74ebc2045b8f38a21ec3b5ad2a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:24:10 +0000 Subject: [PATCH 0388/1182] Updating the times for Region 07 --- 07.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/07.json b/07.json index aec81083e9c..c43aa00243e 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:58:29.597155+02:00", + "last_updated": "2021-06-09 03:24:10.203107+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:00:00", + "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 215, + "appointment_count": 214, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 08:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 303, + "appointment_count": 302, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 09:32:00", + "prochain_rdv": "2021-06-09 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4263, + "appointment_count": 4256, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 77cb4dc6b0858c15cd630a2d13c848296ec1377f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:24:41 +0000 Subject: [PATCH 0389/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 32ce4a5d627..0fe54116e6c 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:58:54.170614+02:00", + "last_updated": "2021-06-09 03:24:40.686704+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 4868454a8752099e054b716ac52a9eb32a17722b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:25:06 +0000 Subject: [PATCH 0390/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 17104e6777e..6e3b42426ac 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 01:59:19.070029+02:00", + "last_updated": "2021-06-09 03:25:05.945711+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3ca262b0361d8b960fe1b54f883a47ecc86c9a4e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:26:24 +0000 Subject: [PATCH 0391/1182] Updating the times for Region 04 --- 04.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04.json b/04.json index 42c5196963b..1d963175258 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 02:00:31.741751+02:00", + "last_updated": "2021-06-09 03:26:23.705653+02:00", "last_scrap": [], "centres_disponibles": [ { From ef475645fcdd13e7b01f5f521fe561a28f38b2be Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:26:52 +0000 Subject: [PATCH 0392/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 84640855155..c4f83951328 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 02:01:02.530283+02:00", + "last_updated": "2021-06-09 03:26:51.665041+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5cf07df05cf954441067ff6ff3f2d646821f5a82 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:27:17 +0000 Subject: [PATCH 0393/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 3f6092092ec..5a8ebbb37f2 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 02:01:29.606564+02:00", + "last_updated": "2021-06-09 03:27:17.314475+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 12976f0303f5e384ff621e717ed2261a7c40e40b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:27:48 +0000 Subject: [PATCH 0394/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 5ec0183daa6..259e5a7e71e 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 02:02:00.136183+02:00", + "last_updated": "2021-06-09 03:27:47.854722+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 49, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 6234d101efc2048a53c4313b3666451c2855eeec Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:31:55 +0000 Subject: [PATCH 0395/1182] Updating the times for Region 22 --- 22.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/22.json b/22.json index 09cc05a8773..529e04fc4b3 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 02:06:09.375171+02:00", + "last_updated": "2021-06-09 03:31:54.995636+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 630, + "appointment_count": 629, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-21 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2394, + "appointment_count": 2408, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From c1d6e6cd3b2e3818d7b1189176e28fadee8c3dce Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 01:32:23 +0000 Subject: [PATCH 0396/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 8c755dca53b..fd2feedcd90 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 02:06:36.783074+02:00", + "last_updated": "2021-06-09 03:32:22.711182+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4d2cc01d8d981c24caa8e1537ffec799f350ccfc Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 02:35:32 +0000 Subject: [PATCH 0397/1182] Updating the stats --- data/output/stats.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index fd25822da81..a110e973d00 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,7 +2,7 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 444 + "creneaux": 446 }, "20": { "disponibles": 4, @@ -32,17 +32,17 @@ "06": { "disponibles": 15, "total": 52, - "creneaux": 4354 + "creneaux": 4352 }, "08": { - "disponibles": 14, + "disponibles": 15, "total": 30, - "creneaux": 5906 + "creneaux": 5914 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 5014 + "creneaux": 5005 }, "25": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 51 + "creneaux": 49 }, "22": { "disponibles": 8, "total": 19, - "creneaux": 11294 + "creneaux": 11307 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 99, + "disponibles": 100, "total": 339, - "creneaux": 47513 + "creneaux": 47523 } } \ No newline at end of file From de0fd412ee3e147c528dcda4d8fe477a7fda9cf2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:36:09 +0000 Subject: [PATCH 0398/1182] Updating the times for Region 10 --- 10.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10.json b/10.json index d381df9b580..2a0d5a3f08b 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:13:49.958682+02:00", + "last_updated": "2021-06-09 04:36:09.011317+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 33, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, From 8102b6227ac4dbaf5cd4a4d1ec4158616a0ef3fe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:37:00 +0000 Subject: [PATCH 0399/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index 21ed2146135..5fae5d9d3ce 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:14:36.206873+02:00", + "last_updated": "2021-06-09 04:36:59.077289+02:00", "last_scrap": [], "centres_disponibles": [ { From 22f63d64d8b1037a7c77c652f683e436cf6d23fd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:37:27 +0000 Subject: [PATCH 0400/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 8c3addbca53..3a7f1e4fda9 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:15:05.756972+02:00", + "last_updated": "2021-06-09 04:37:26.651120+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 08dbcbf24e7a3e8de2e8ad8f27acb9e2308bfc95 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:37:54 +0000 Subject: [PATCH 0401/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 885e2a39d86..98d00d8f57c 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:15:36.235710+02:00", + "last_updated": "2021-06-09 04:37:54.035364+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 60ce2aaa0b674cb7d3bf034fb184dbf3bc96e6f3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:38:23 +0000 Subject: [PATCH 0402/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 063297a7c08..c85b719dcfe 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:16:05.238205+02:00", + "last_updated": "2021-06-09 04:38:22.849779+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a1e1e25bea74a728cd0ddaf7155199a7086fb529 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:38:51 +0000 Subject: [PATCH 0403/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 80f6cb8129d..51a417e281c 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:16:33.978942+02:00", + "last_updated": "2021-06-09 04:38:51.394271+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9d3030caae3de879bbb5a4e23ecefeb9f06ad675 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:42:20 +0000 Subject: [PATCH 0404/1182] Updating the times for Region 06 --- 06.json | 58 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/06.json b/06.json index f4e5582573d..57891a81818 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:19:55.793845+02:00", + "last_updated": "2021-06-09 04:42:19.799348+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": "2021-06-24 11:21:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -649,6 +621,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", From 6ab68726502bae1d4dc871e6a6cfdaa662968ea9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:45:55 +0000 Subject: [PATCH 0405/1182] Updating the times for Region 08 --- 08.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/08.json b/08.json index 94a1e400846..a420ca51fec 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:23:21.830079+02:00", + "last_updated": "2021-06-09 04:45:55.236846+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 83, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 149, + "appointment_count": 142, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-16 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 101, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-14 14:22:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1745, + "appointment_count": 1736, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +357,7 @@ "prochain_rdv": "2021-06-14 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1328, + "appointment_count": 1320, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +385,7 @@ "prochain_rdv": "2021-06-15 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1162, + "appointment_count": 1153, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 1adcacb9193a499599f27e052b46b4e1b12a282f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:46:45 +0000 Subject: [PATCH 0406/1182] Updating the times for Region 07 --- 07.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07.json b/07.json index c43aa00243e..eb7da868775 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:24:10.203107+02:00", + "last_updated": "2021-06-09 04:46:44.573306+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 214, + "appointment_count": 212, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, From ea23f371b113c83944777497e6bebde44b748726 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:47:12 +0000 Subject: [PATCH 0407/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 0fe54116e6c..36a63d339da 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:24:40.686704+02:00", + "last_updated": "2021-06-09 04:47:11.980027+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 59275657761cdd41ed448d16e7e34d7e606258d8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:47:40 +0000 Subject: [PATCH 0408/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 6e3b42426ac..b2529a253ab 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:25:05.945711+02:00", + "last_updated": "2021-06-09 04:47:39.834008+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 74bfd284a9de60372d79b0194f0113ad5266b4e1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:48:56 +0000 Subject: [PATCH 0409/1182] Updating the times for Region 04 --- 04.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04.json b/04.json index 1d963175258..63507cfcd33 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:26:23.705653+02:00", + "last_updated": "2021-06-09 04:48:55.511218+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 11:28:00", + "prochain_rdv": "2021-06-15 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2748, + "appointment_count": 2750, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From db26aa8af717d6bba707d357fe36dfd04fe493ea Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:49:25 +0000 Subject: [PATCH 0410/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index c4f83951328..a8f33bc3c72 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:26:51.665041+02:00", + "last_updated": "2021-06-09 04:49:25.031238+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b1fe0d852f3042aa71c13dd172e0b975fcad3734 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:49:54 +0000 Subject: [PATCH 0411/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 5a8ebbb37f2..a43fd4a57f9 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:27:17.314475+02:00", + "last_updated": "2021-06-09 04:49:54.388123+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 888c314d4b68d388217b40592a98be6b2c673d01 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:50:29 +0000 Subject: [PATCH 0412/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 259e5a7e71e..40d2cfc102b 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:27:47.854722+02:00", + "last_updated": "2021-06-09 04:50:28.469550+02:00", "last_scrap": [], "centres_disponibles": [ { From 5d551b7d455d396595a1360acd96aad5461cbb5b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:54:26 +0000 Subject: [PATCH 0413/1182] Updating the times for Region 22 --- 22.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/22.json b/22.json index 529e04fc4b3..735dccfa93c 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:31:54.995636+02:00", + "last_updated": "2021-06-09 04:54:26.278296+02:00", "last_scrap": [], "centres_disponibles": [ { From 2883561b315f4525c16eb38974b9cff190da0f2a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 02:54:51 +0000 Subject: [PATCH 0414/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index fd2feedcd90..04d1f682be3 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 03:32:22.711182+02:00", + "last_updated": "2021-06-09 04:54:51.281292+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b70cdad8dd2ff654c27d33c1f4de6ed274f1ed52 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 03:24:24 +0000 Subject: [PATCH 0415/1182] Updating the stats --- data/output/stats.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index a110e973d00..fc5b0f76a9b 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,7 +2,7 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 446 + "creneaux": 445 }, "20": { "disponibles": 4, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 15, + "disponibles": 14, "total": 52, - "creneaux": 4352 + "creneaux": 4348 }, "08": { "disponibles": 15, "total": 30, - "creneaux": 5914 + "creneaux": 5866 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 5005 + "creneaux": 5003 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3336 + "creneaux": 3338 }, "03": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 100, + "disponibles": 99, "total": 339, - "creneaux": 47523 + "creneaux": 47470 } } \ No newline at end of file From 10f537bd795513c4fcad3658c6c2e636860c49aa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:25:02 +0000 Subject: [PATCH 0416/1182] Updating the times for Region 10 --- 10.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/10.json b/10.json index 2a0d5a3f08b..5ef1a4782ca 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:36:09.011317+02:00", + "last_updated": "2021-06-09 05:25:01.284528+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 14:40:00", + "prochain_rdv": "2021-06-16 15:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 32, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, From e3fc03b9e82df6bc244c9f5b504e29e8f87eee1e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:25:51 +0000 Subject: [PATCH 0417/1182] Updating the times for Region 20 --- 20.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/20.json b/20.json index 5fae5d9d3ce..77ac7b38ba3 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:36:59.077289+02:00", + "last_updated": "2021-06-09 05:25:50.714118+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 11:28:00", + "prochain_rdv": "2021-07-07 13:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2717, + "appointment_count": 2715, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-24 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 52, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From a3d7067c6f8995235dc10c458bd89bdf3263e44b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:26:22 +0000 Subject: [PATCH 0418/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 3a7f1e4fda9..255cb38926b 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:37:26.651120+02:00", + "last_updated": "2021-06-09 05:26:21.665166+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 92d31c8288c27e8730f2a7ac4c4a248f18e71247 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:26:54 +0000 Subject: [PATCH 0419/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 98d00d8f57c..90fe1013279 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:37:54.035364+02:00", + "last_updated": "2021-06-09 05:26:53.777640+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2f165990833ca84d6a09bd581dd928baab3ca64a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:27:22 +0000 Subject: [PATCH 0420/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index c85b719dcfe..ec72c93b271 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:38:22.849779+02:00", + "last_updated": "2021-06-09 05:27:22.017575+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4b46a914de2dfb7579688d9947846b335d0fe7fc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:27:53 +0000 Subject: [PATCH 0421/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 51a417e281c..cefb21777b8 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:38:51.394271+02:00", + "last_updated": "2021-06-09 05:27:52.545308+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 61ef2dc002bf7ca821704a3ece69d7ab78ad44d5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:31:17 +0000 Subject: [PATCH 0422/1182] Updating the times for Region 06 --- 06.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/06.json b/06.json index 57891a81818..8fde1d1839e 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:42:19.799348+02:00", + "last_updated": "2021-06-09 05:31:16.855634+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 08:30:00", + "prochain_rdv": "2021-06-23 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 294, + "appointment_count": 291, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-22 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 58, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -366,34 +366,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": "2021-06-18 15:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ @@ -1377,6 +1349,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 0b5353b1c1a5a96321a56b0285918fa55a2fbf15 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:34:44 +0000 Subject: [PATCH 0423/1182] Updating the times for Region 08 --- 08.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/08.json b/08.json index a420ca51fec..63ccb9cb7c7 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:45:55.236846+02:00", + "last_updated": "2021-06-09 05:34:43.896999+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 83, + "appointment_count": 91, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 14:20:00", + "prochain_rdv": "2021-06-15 14:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 30, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:15:00", + "prochain_rdv": "2021-06-15 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1320, + "appointment_count": 1272, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:27:00", + "prochain_rdv": "2021-06-15 13:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1153, + "appointment_count": 1145, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 2e8f94fb8ff9b6e8edf6317075cb01a5863d0828 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:35:34 +0000 Subject: [PATCH 0424/1182] Updating the times for Region 07 --- 07.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07.json b/07.json index eb7da868775..875a9fa5244 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:46:44.573306+02:00", + "last_updated": "2021-06-09 05:35:34.170546+02:00", "last_scrap": [], "centres_disponibles": [ { From 1c04a1a6fa13c620006e4f81b2461f9e41e364ed Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:35:59 +0000 Subject: [PATCH 0425/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 36a63d339da..41c347f9650 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:47:11.980027+02:00", + "last_updated": "2021-06-09 05:35:59.110007+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 25600c96d750224119fc8c40d8e831ae9dc61ad1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:36:26 +0000 Subject: [PATCH 0426/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index b2529a253ab..b46bab521af 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:47:39.834008+02:00", + "last_updated": "2021-06-09 05:36:25.678124+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From b3c61d29ce44b1f85fd00f73d8f5adc04011e4d9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:37:36 +0000 Subject: [PATCH 0427/1182] Updating the times for Region 04 --- 04.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04.json b/04.json index 63507cfcd33..4449203343c 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:48:55.511218+02:00", + "last_updated": "2021-06-09 05:37:35.610424+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 15:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 24, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 541, + "appointment_count": 539, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, From 1afb4c9be7304cdd1e8f0d496f35314d318158c5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:38:02 +0000 Subject: [PATCH 0428/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index a8f33bc3c72..66a27d48aec 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:49:25.031238+02:00", + "last_updated": "2021-06-09 05:38:01.991575+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4d319e468723a767b830544800e05375f3fa8054 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:38:34 +0000 Subject: [PATCH 0429/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index a43fd4a57f9..487e25dad7f 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:49:54.388123+02:00", + "last_updated": "2021-06-09 05:38:33.984972+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 94ebc8eeba6113c353256d695823e6959c8e9439 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:39:06 +0000 Subject: [PATCH 0430/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 40d2cfc102b..24fc2766b68 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:50:28.469550+02:00", + "last_updated": "2021-06-09 05:39:05.430894+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 953e2b9e2587030aa109889a66c5bbe3690e652e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:42:58 +0000 Subject: [PATCH 0431/1182] Updating the times for Region 22 --- 22.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/22.json b/22.json index 735dccfa93c..e9a8d34239f 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:54:26.278296+02:00", + "last_updated": "2021-06-09 05:42:58.149974+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-10 15:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 13, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 08:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6720, + "appointment_count": 6706, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-17 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 104, + "appointment_count": 91, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, From d7f789a01d761a851a9be3b560e4011182f55e32 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 03:43:30 +0000 Subject: [PATCH 0432/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 04d1f682be3..8f6d0bb1082 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 04:54:51.281292+02:00", + "last_updated": "2021-06-09 05:43:29.592800+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b19187b1a04356803205741ef0dece8e86e99004 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 04:13:54 +0000 Subject: [PATCH 0433/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index fc5b0f76a9b..11e9f789d84 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 445 + "creneaux": 444 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3037 + "creneaux": 3033 }, "09": { "disponibles": 0, @@ -30,14 +30,14 @@ "creneaux": 0 }, "06": { - "disponibles": 14, + "disponibles": 13, "total": 52, - "creneaux": 4348 + "creneaux": 4340 }, "08": { "disponibles": 15, "total": 30, - "creneaux": 5866 + "creneaux": 5809 }, "07": { "disponibles": 7, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3338 + "creneaux": 3335 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 49 + "creneaux": 48 }, "22": { "disponibles": 8, "total": 19, - "creneaux": 11307 + "creneaux": 11267 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 99, + "disponibles": 98, "total": 339, - "creneaux": 47470 + "creneaux": 47356 } } \ No newline at end of file From ae86332456a82ddff51f731c0c29882f81010c05 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:14:30 +0000 Subject: [PATCH 0434/1182] Updating the times for Region 10 --- 10.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/10.json b/10.json index 5ef1a4782ca..62b652f019d 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:25:01.284528+02:00", + "last_updated": "2021-06-09 06:14:30.362600+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:10:00", + "prochain_rdv": "2021-06-22 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 15:35:00", + "prochain_rdv": "2021-06-16 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 33, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 16, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-24 15:30:00", + "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 22, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 106, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From a2697b5864f0e8e36fbfd1aa319117df10c971d6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:15:16 +0000 Subject: [PATCH 0435/1182] Updating the times for Region 20 --- 20.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/20.json b/20.json index 77ac7b38ba3..a213ffadc3b 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:25:50.714118+02:00", + "last_updated": "2021-06-09 06:15:15.457894+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 13:16:00", + "prochain_rdv": "2021-07-05 12:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2715, + "appointment_count": 2716, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, From f6a98dcce82be74a0fb40b23f6600d230224061e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:15:44 +0000 Subject: [PATCH 0436/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 255cb38926b..562d8baa3d7 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:26:21.665166+02:00", + "last_updated": "2021-06-09 06:15:43.908734+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From eba28b925bb10e27a8595e023d00067b41effe3a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:16:11 +0000 Subject: [PATCH 0437/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 90fe1013279..866dc8c604c 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:26:53.777640+02:00", + "last_updated": "2021-06-09 06:16:11.077303+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From be020bb6498971e2013ff8e7a45088ce124271b8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:16:42 +0000 Subject: [PATCH 0438/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ec72c93b271..35a4e5f37e5 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:27:22.017575+02:00", + "last_updated": "2021-06-09 06:16:41.878174+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 930221f7015c071e9ad5e2e863e46eb873cb7eb3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:17:06 +0000 Subject: [PATCH 0439/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index cefb21777b8..d2cf30383ec 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:27:52.545308+02:00", + "last_updated": "2021-06-09 06:17:05.667239+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d7f241ce7aa687c5fb4ea66b24e8a130618e1eef Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:20:21 +0000 Subject: [PATCH 0440/1182] Updating the times for Region 06 --- 06.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/06.json b/06.json index 8fde1d1839e..d69e38f1734 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:31:16.855634+02:00", + "last_updated": "2021-06-09 06:20:20.763563+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-07-01 08:55:00", + "prochain_rdv": "2021-07-01 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 12, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 15:20:00", + "prochain_rdv": "2021-06-30 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 44, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 08:35:00", + "prochain_rdv": "2021-06-23 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 291, + "appointment_count": 270, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-22 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 56, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, From 18b19358e4a4c6d5cc52216381358e03a79c8ec8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:23:45 +0000 Subject: [PATCH 0441/1182] Updating the times for Region 08 --- 08.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/08.json b/08.json index 63ccb9cb7c7..780ecbef581 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:34:43.896999+02:00", + "last_updated": "2021-06-09 06:23:44.854318+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 08:40:00", + "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 83, + "appointment_count": 67, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 10:10:00", + "prochain_rdv": "2021-06-17 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 119, + "appointment_count": 117, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 154, + "appointment_count": 147, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0499-489 30" }, - "prochain_rdv": "2021-06-16 09:45:00", + "prochain_rdv": "2021-06-16 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 142, + "appointment_count": 126, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:40:00", + "prochain_rdv": "2021-06-15 17:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 252, + "appointment_count": 243, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:22:00", + "prochain_rdv": "2021-06-14 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1736, + "appointment_count": 1710, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:36:00", + "prochain_rdv": "2021-06-15 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1272, + "appointment_count": 1216, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +413,7 @@ "prochain_rdv": "2021-06-17 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 337, + "appointment_count": 330, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From e4e111a333d1fd14d3af8c68ec634bf7d7efaff9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:24:37 +0000 Subject: [PATCH 0442/1182] Updating the times for Region 07 --- 07.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/07.json b/07.json index 875a9fa5244..e43e9323e88 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:35:34.170546+02:00", + "last_updated": "2021-06-09 06:24:36.542975+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:05:00", + "prochain_rdv": "2021-06-12 09:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 212, + "appointment_count": 210, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 10:00:00", + "prochain_rdv": "2021-06-12 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 106, + "appointment_count": 105, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 08:45:00", + "prochain_rdv": "2021-06-10 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 302, + "appointment_count": 289, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 08:50:00", + "prochain_rdv": "2021-06-15 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 10, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, From 1a956e1670a1c90bbd122f9f411ae37690c04386 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:25:06 +0000 Subject: [PATCH 0443/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 41c347f9650..d3fc4b0e540 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:35:59.110007+02:00", + "last_updated": "2021-06-09 06:25:05.651715+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 1753541eadb9e50fb47f56993847c83978e447c3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:25:32 +0000 Subject: [PATCH 0444/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index b46bab521af..3f0b4a12fbf 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:36:25.678124+02:00", + "last_updated": "2021-06-09 06:25:31.549618+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d9a808bd6d06fdf0e1a684de1993207be5fa7e7f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:26:41 +0000 Subject: [PATCH 0445/1182] Updating the times for Region 04 --- 04.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04.json b/04.json index 4449203343c..76a8511a924 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:37:35.610424+02:00", + "last_updated": "2021-06-09 06:26:41.203792+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 539, + "appointment_count": 533, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-15 11:12:00", + "prochain_rdv": "2021-06-15 16:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2750, From 948efad496483eaa05f49bebf244f3c976efea4c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:27:08 +0000 Subject: [PATCH 0446/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 66a27d48aec..c2730e94e9c 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:38:01.991575+02:00", + "last_updated": "2021-06-09 06:27:07.667618+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 51ea19ede036c2598d7849d885fa12cf53ad5085 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:27:34 +0000 Subject: [PATCH 0447/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 487e25dad7f..c8972cbf3df 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:38:33.984972+02:00", + "last_updated": "2021-06-09 06:27:34.375607+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0141ee4848c816f2bc4309fe64626ac5ebdc358e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:28:01 +0000 Subject: [PATCH 0448/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index 24fc2766b68..746cadf362f 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:39:05.430894+02:00", + "last_updated": "2021-06-09 06:28:00.736821+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 17:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 46, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 285f1d7a38b0a2c9f91a6b707ce04db6e2cf64fa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:32:09 +0000 Subject: [PATCH 0449/1182] Updating the times for Region 22 --- 22.json | 124 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/22.json b/22.json index e9a8d34239f..e7025d7f16f 100644 --- a/22.json +++ b/22.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-09 05:42:58.149974+02:00", + "last_updated": "2021-06-09 06:32:08.817762+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-10 15:21:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 13, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -49,7 +21,7 @@ "prochain_rdv": "2021-06-10 08:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6706, + "appointment_count": 6692, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-17 18:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -105,7 +49,7 @@ "prochain_rdv": "2021-06-17 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 104, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 08:55:00", + "prochain_rdv": "2021-06-21 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 980, + "appointment_count": 910, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +105,7 @@ "prochain_rdv": "2021-06-09 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 629, + "appointment_count": 603, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,6 +173,62 @@ } ], "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From d7c7f14f3dacca3290da8da4e39a6652c909f8c5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 04:32:44 +0000 Subject: [PATCH 0450/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 8f6d0bb1082..7eea0218f01 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 05:43:29.592800+02:00", + "last_updated": "2021-06-09 06:32:44.380167+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 01aff63e78b07c6db5b9c1751715d9b0d7b8cabd Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 05:07:40 +0000 Subject: [PATCH 0451/1182] Updating the stats --- data/output/stats.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 11e9f789d84..eca81faf619 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 444 + "creneaux": 442 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3033 + "creneaux": 3034 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 13, "total": 52, - "creneaux": 4340 + "creneaux": 4310 }, "08": { "disponibles": 15, "total": 30, - "creneaux": 5809 + "creneaux": 5670 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 5003 + "creneaux": 4988 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3335 + "creneaux": 3329 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 48 + "creneaux": 46 }, "22": { - "disponibles": 8, + "disponibles": 6, "total": 19, - "creneaux": 11267 + "creneaux": 11143 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 98, + "disponibles": 96, "total": 339, - "creneaux": 47356 + "creneaux": 47039 } } \ No newline at end of file From 4ec026e53fed26e13d58d5679261bae1841e1d45 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:08:13 +0000 Subject: [PATCH 0452/1182] Updating the times for Region 10 --- 10.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/10.json b/10.json index 62b652f019d..77081bd6c0a 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:14:30.362600+02:00", + "last_updated": "2021-06-09 07:08:13.091248+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:15:00", + "prochain_rdv": "2021-06-22 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 20, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-12 08:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 116, + "appointment_count": 112, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-24 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 32, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-24 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 9, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 10:50:00", + "prochain_rdv": "2021-06-23 10:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 55, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-23 10:55:00", + "prochain_rdv": "2021-06-24 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 14, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-21 15:50:00", + "prochain_rdv": "2021-06-21 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 56, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 08:50:00", + "prochain_rdv": "2021-06-22 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 09:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 106, + "appointment_count": 105, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From b985a1aa1fb566c59929d64368cfb8efbddd5a9c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:09:05 +0000 Subject: [PATCH 0453/1182] Updating the times for Region 20 --- 20.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/20.json b/20.json index a213ffadc3b..ff7c2b815ac 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:15:15.457894+02:00", + "last_updated": "2021-06-09 07:09:04.879961+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-05 12:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2716, + "appointment_count": 2714, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 217, + "appointment_count": 212, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 47, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-24 09:35:00", + "prochain_rdv": "2021-06-24 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 49, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 16c89ad82077c4146c4a0294b51874a0f50b74db Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:09:31 +0000 Subject: [PATCH 0454/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 562d8baa3d7..dafb7daf18a 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:15:43.908734+02:00", + "last_updated": "2021-06-09 07:09:31.249669+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0ca91127a1495bf163ccd6cc646123dca5e992c4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:10:00 +0000 Subject: [PATCH 0455/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 866dc8c604c..04739063ee4 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:16:11.077303+02:00", + "last_updated": "2021-06-09 07:09:59.966910+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 614dc3988eb7335ed1938fc94eb23ce66e536be6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:10:28 +0000 Subject: [PATCH 0456/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 35a4e5f37e5..6c9152cd365 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:16:41.878174+02:00", + "last_updated": "2021-06-09 07:10:27.679456+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7478316eeed0f7890089eb8c9b8a5164d514db70 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:10:54 +0000 Subject: [PATCH 0457/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index d2cf30383ec..4b75fe4503a 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:17:05.667239+02:00", + "last_updated": "2021-06-09 07:10:53.818784+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 37c65d3a9e19b632da050dde8e0cf96bb446334d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:14:23 +0000 Subject: [PATCH 0458/1182] Updating the times for Region 06 --- 06.json | 146 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/06.json b/06.json index d69e38f1734..478848a17a0 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:20:20.763563+02:00", + "last_updated": "2021-06-09 07:14:22.885753+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:05:00", + "prochain_rdv": "2021-06-23 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 84, + "appointment_count": 82, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:40:00", + "prochain_rdv": "2021-06-22 19:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 68, + "appointment_count": 64, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-23 10:48:00", + "prochain_rdv": "2021-06-24 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,6 +87,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Gnosjö vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.740003220192987, + "latitude": 57.35573378899504, + "city": "Gnosjö", + "cp": "00000" + }, + "metadata": { + "address": "Järnvägsgatan 49, Gnosjö", + "business_hours": null, + "phone_number": "010-244 80 15" + }, + "prochain_rdv": "2021-07-01 13:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1182", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": "2021-06-17 09:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -102,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-07-01 13:12:00", + "prochain_rdv": "2021-07-01 13:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 6, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 15:30:00", + "prochain_rdv": "2021-06-30 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 38, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +245,7 @@ "prochain_rdv": "2021-06-23 20:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1708, + "appointment_count": 1704, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +270,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 08:50:00", + "prochain_rdv": "2021-06-23 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 270, + "appointment_count": 258, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:28:00", + "prochain_rdv": "2021-06-22 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 297, + "appointment_count": 294, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +385,7 @@ "prochain_rdv": "2021-06-22 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 52, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -509,34 +565,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Gnosjö vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 13.740003220192987, - "latitude": 57.35573378899504, - "city": "Gnosjö", - "cp": "00000" - }, - "metadata": { - "address": "Järnvägsgatan 49, Gnosjö", - "business_hours": null, - "phone_number": "010-244 80 15" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1182", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Gränna vårdcentral (18+ LSS/assistans/vårdnära)", @@ -649,34 +677,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From e64b820ccfcdac50d6aa61e7971f2f0f126c80f9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:17:58 +0000 Subject: [PATCH 0459/1182] Updating the times for Region 08 --- 08.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/08.json b/08.json index 780ecbef581..081f1dbbd9d 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:23:44.854318+02:00", + "last_updated": "2021-06-09 07:17:58.424301+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-16 13:30:00", + "prochain_rdv": "2021-06-16 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 91, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-17 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 117, + "appointment_count": 101, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 09:30:00", + "prochain_rdv": "2021-06-16 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 147, + "appointment_count": 110, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0499-489 30" }, - "prochain_rdv": "2021-06-16 10:25:00", + "prochain_rdv": "2021-06-16 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 126, + "appointment_count": 110, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 10:25:00", + "prochain_rdv": "2021-06-16 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 101, + "appointment_count": 60, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:45:00", + "prochain_rdv": "2021-06-15 17:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 243, + "appointment_count": 236, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,7 +298,7 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-16 16:18:00", + "prochain_rdv": "2021-06-15 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 8, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:24:00", + "prochain_rdv": "2021-06-09 13:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1710, + "appointment_count": 1657, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:39:00", + "prochain_rdv": "2021-06-14 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1216, + "appointment_count": 1208, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:33:00", + "prochain_rdv": "2021-06-09 09:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1145, + "appointment_count": 1127, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +410,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:25:00", + "prochain_rdv": "2021-06-17 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 330, + "appointment_count": 305, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 54ff98d88113de4bf24c3544bb0f8ab717361747 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:18:48 +0000 Subject: [PATCH 0460/1182] Updating the times for Region 07 --- 07.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/07.json b/07.json index e43e9323e88..89b3ab4fc3b 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:24:36.542975+02:00", + "last_updated": "2021-06-09 07:18:48.416500+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:10:00", + "prochain_rdv": "2021-06-12 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 210, + "appointment_count": 206, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:35:00", + "prochain_rdv": "2021-06-12 10:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 105, + "appointment_count": 104, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:00:00", + "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 289, + "appointment_count": 282, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-15 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 62, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 56, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-09 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4256, + "appointment_count": 4249, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 1248ab31c0999a668c831b701d43443855e29074 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:19:19 +0000 Subject: [PATCH 0461/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index d3fc4b0e540..6aed2e87ccc 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:25:05.651715+02:00", + "last_updated": "2021-06-09 07:19:18.335775+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From bf19b73d60841bdf48c31eca9cf208605788f932 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:19:43 +0000 Subject: [PATCH 0462/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 3f0b4a12fbf..2b092a1f08a 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:25:31.549618+02:00", + "last_updated": "2021-06-09 07:19:43.171381+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7f036475def128e40b091e311e125565fbd89564 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:20:56 +0000 Subject: [PATCH 0463/1182] Updating the times for Region 04 --- 04.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/04.json b/04.json index 76a8511a924..d5d1f35712b 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:26:41.203792+02:00", + "last_updated": "2021-06-09 07:20:55.748851+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-16 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 23, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 15:10:00", + "prochain_rdv": "2021-06-22 15:20:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 22, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 533, + "appointment_count": 529, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-15 16:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2750, + "appointment_count": 2746, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From c9055b722d50d1cc8b705443ca1c70feb86bf455 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:21:24 +0000 Subject: [PATCH 0464/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index c2730e94e9c..be504b94a7a 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:27:07.667618+02:00", + "last_updated": "2021-06-09 07:21:23.660053+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 766fbf7e7f70b5bdbd6fdb08e11cbd804659ed59 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:21:52 +0000 Subject: [PATCH 0465/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index c8972cbf3df..5430a47ad3a 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:27:34.375607+02:00", + "last_updated": "2021-06-09 07:21:51.601202+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 566a16456397db2f35e3d61eff6d1826e9b66b35 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:22:22 +0000 Subject: [PATCH 0466/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 746cadf362f..f56a786194c 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:28:00.736821+02:00", + "last_updated": "2021-06-09 07:22:21.657774+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 17:50:00", + "prochain_rdv": "2021-06-18 11:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 39, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 015d4e566e71d3092612c8b958c4abb1cfe590b1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:26:18 +0000 Subject: [PATCH 0467/1182] Updating the times for Region 22 --- 22.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/22.json b/22.json index e7025d7f16f..f93a402b2a8 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:32:08.817762+02:00", + "last_updated": "2021-06-09 07:26:18.057277+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 08:33:00", + "prochain_rdv": "2021-06-10 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6692, + "appointment_count": 6650, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-21 13:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-21 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 910, + "appointment_count": 938, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:40:00", + "prochain_rdv": "2021-06-09 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 603, + "appointment_count": 601, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:12:00", + "prochain_rdv": "2021-06-21 11:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2408, + "appointment_count": 2366, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 82b7b3939be012d4087c024a28a83f814ae3f5c5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:26:49 +0000 Subject: [PATCH 0468/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 7eea0218f01..fa6e0e69f3a 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 06:32:44.380167+02:00", + "last_updated": "2021-06-09 07:26:49.201801+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e9c8521e0b95133bf5bcea1946180d40cbe9f548 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 05:54:33 +0000 Subject: [PATCH 0469/1182] Updating the stats --- data/output/stats.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index eca81faf619..f43e8cdbc7f 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 442 + "creneaux": 432 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3034 + "creneaux": 3022 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 13, + "disponibles": 15, "total": 52, - "creneaux": 4310 + "creneaux": 4276 }, "08": { "disponibles": 15, "total": 30, - "creneaux": 5670 + "creneaux": 5449 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4988 + "creneaux": 4969 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3329 + "creneaux": 3320 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 46 + "creneaux": 39 }, "22": { - "disponibles": 6, + "disponibles": 7, "total": 19, - "creneaux": 11143 + "creneaux": 11099 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 96, + "disponibles": 99, "total": 339, - "creneaux": 47039 + "creneaux": 46683 } } \ No newline at end of file From 37a7f433ff6e9589f9e7add5a8459da1cac92848 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:55:05 +0000 Subject: [PATCH 0470/1182] Updating the times for Region 10 --- 10.json | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/10.json b/10.json index 77081bd6c0a..9269230fda2 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:08:13.091248+02:00", + "last_updated": "2021-06-09 07:55:04.617017+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:10:00", + "prochain_rdv": "2021-06-12 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 13:15:00", + "prochain_rdv": "2021-06-09 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 14:40:00", + "prochain_rdv": "2021-06-16 15:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 32, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-24 11:30:00", + "prochain_rdv": "2021-06-23 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, + "appointment_count": 16, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-21 16:00:00", + "prochain_rdv": "2021-06-22 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 53, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:05:00", + "prochain_rdv": "2021-06-19 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 105, + "appointment_count": 104, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -313,24 +313,24 @@ }, { "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", + "nom": "Valjehälsan, Sölvesborg", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "address": "Herrgårdsvägen 97", "business_hours": null, - "phone_number": "0455-73 54 30" + "phone_number": "0456-329 60" }, - "prochain_rdv": "2021-06-24 15:45:00", + "prochain_rdv": "2021-06-10 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, - "internal_id": "581", + "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -539,24 +539,24 @@ }, { "departement": "10", - "nom": "Valjehälsan, Sölvesborg", + "nom": "Wämö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Herrgårdsvägen 97", + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", "business_hours": null, - "phone_number": "0456-329 60" + "phone_number": "0455-73 54 30" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "597", + "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 3d5436d0f771c0cfadae9b8895c082034beba070 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:55:49 +0000 Subject: [PATCH 0471/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index ff7c2b815ac..9b896969fd2 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:09:04.879961+02:00", + "last_updated": "2021-06-09 07:55:48.729341+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 12:44:00", + "prochain_rdv": "2021-07-07 13:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2714, + "appointment_count": 2703, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-06-23 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 212, + "appointment_count": 208, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-24 09:40:00", + "prochain_rdv": "2021-06-28 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 47, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 5a07e2bf5a7a639baa8be1f27d7305506346d01e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:56:20 +0000 Subject: [PATCH 0472/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index dafb7daf18a..6714c2c4bca 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:09:31.249669+02:00", + "last_updated": "2021-06-09 07:56:19.872308+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 585981070ab58dd50adeab683e9b4e2ca416b60a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:56:44 +0000 Subject: [PATCH 0473/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 04739063ee4..7aa04d042c5 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:09:59.966910+02:00", + "last_updated": "2021-06-09 07:56:43.743827+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bdbf76f1829d764c5fd126cdef30dbb789f6abce Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:57:11 +0000 Subject: [PATCH 0474/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 6c9152cd365..aaf3e99a078 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:10:27.679456+02:00", + "last_updated": "2021-06-09 07:57:11.274981+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d8e42f43935f14f0347454ac369c60b72f3921ac Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 05:57:42 +0000 Subject: [PATCH 0475/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 4b75fe4503a..2d73de0a22c 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:10:53.818784+02:00", + "last_updated": "2021-06-09 07:57:41.665375+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f0731fb387c10212ec254ea6ed0bd4c21d8787f4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:01:16 +0000 Subject: [PATCH 0476/1182] Updating the times for Region 06 --- 06.json | 190 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 95 insertions(+), 95 deletions(-) diff --git a/06.json b/06.json index 478848a17a0..18d609c2618 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:14:22.885753+02:00", + "last_updated": "2021-06-09 08:01:15.871044+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:10:00", + "prochain_rdv": "2021-06-23 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 82, + "appointment_count": 81, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:45:00", + "prochain_rdv": "2021-06-22 19:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 60, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,62 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Gnosjö vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 13.740003220192987, - "latitude": 57.35573378899504, - "city": "Gnosjö", - "cp": "00000" - }, - "metadata": { - "address": "Järnvägsgatan 49, Gnosjö", - "business_hours": null, - "phone_number": "010-244 80 15" - }, - "prochain_rdv": "2021-07-01 13:10:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1182", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": "2021-06-17 09:48:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -158,7 +102,7 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-07-01 13:54:00", + "prochain_rdv": "2021-06-24 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 6, @@ -214,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 15:40:00", + "prochain_rdv": "2021-06-30 11:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 38, + "appointment_count": 40, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -255,6 +199,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": "2021-06-17 10:09:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 08:45:00", + "prochain_rdv": "2021-06-23 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 258, + "appointment_count": 210, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +357,7 @@ "prochain_rdv": "2021-06-22 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 54, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -565,6 +537,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Gnosjö vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.740003220192987, + "latitude": 57.35573378899504, + "city": "Gnosjö", + "cp": "00000" + }, + "metadata": { + "address": "Järnvägsgatan 49, Gnosjö", + "business_hours": null, + "phone_number": "010-244 80 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1182", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Gränna vårdcentral (18+ LSS/assistans/vårdnära)", @@ -677,6 +677,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -789,34 +817,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", From 76cdafdb3fe297a3f33bb1af1942326606460367 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:04:57 +0000 Subject: [PATCH 0477/1182] Updating the times for Region 08 --- 08.json | 92 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/08.json b/08.json index 081f1dbbd9d..cb722860665 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:17:58.424301+02:00", + "last_updated": "2021-06-09 08:04:56.650335+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 75, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 09:10:00", + "prochain_rdv": "2021-06-17 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 101, + "appointment_count": 85, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:40:00", + "prochain_rdv": "2021-06-15 17:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 101, + "appointment_count": 92, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 10:25:00", + "prochain_rdv": "2021-06-16 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 110, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 85, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 10:45:00", + "prochain_rdv": "2021-06-10 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 67, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-15 17:50:00", + "prochain_rdv": "2021-06-17 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 236, + "appointment_count": 229, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", - "cp": "00000" - }, - "metadata": { - "address": "Villagatan 4, Borgholm", - "business_hours": null, - "phone_number": "0480-844 44" - }, - "prochain_rdv": "2021-06-15 13:36:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 8, - "internal_id": "2056", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Vaccinationscentral covid-19 Kalmar", @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-09 13:24:00", + "prochain_rdv": "2021-06-14 14:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1657, + "appointment_count": 1626, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 13:18:00", + "prochain_rdv": "2021-06-14 11:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1208, + "appointment_count": 1192, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-09 09:06:00", + "prochain_rdv": "2021-06-15 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1127, + "appointment_count": 1111, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -817,6 +789,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Virserums läkarhus", From 6e7bc6cd56e1d39eca81e710f62827df01015dbb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:05:53 +0000 Subject: [PATCH 0478/1182] Updating the times for Region 07 --- 07.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/07.json b/07.json index 89b3ab4fc3b..84f25f11731 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:18:48.416500+02:00", + "last_updated": "2021-06-09 08:05:53.020731+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:15:00", + "prochain_rdv": "2021-06-12 09:20:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 206, + "appointment_count": 202, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 10:00:00", + "prochain_rdv": "2021-06-12 11:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 104, + "appointment_count": 99, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 282, + "appointment_count": 272, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-15 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 11, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-15 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 61, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-09 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4249, + "appointment_count": 4235, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From f39e22783c178f3ffa4df6fd39b081e86aead401 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:06:24 +0000 Subject: [PATCH 0479/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 6aed2e87ccc..6975eeaeacd 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:19:18.335775+02:00", + "last_updated": "2021-06-09 08:06:24.198083+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d50b565edf33c713db5cf9daeffd85d666e37517 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:07:01 +0000 Subject: [PATCH 0480/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 2b092a1f08a..b4bfec541a6 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:19:43.171381+02:00", + "last_updated": "2021-06-09 08:07:00.409005+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 15c96ce1b3399ad37c34ee7a29b7b21632364634 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:08:15 +0000 Subject: [PATCH 0481/1182] Updating the times for Region 04 --- 04.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04.json b/04.json index d5d1f35712b..85149a34a0c 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:20:55.748851+02:00", + "last_updated": "2021-06-09 08:08:15.330971+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:15:00", + "prochain_rdv": "2021-06-16 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 19, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-07-06 19:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 529, + "appointment_count": 521, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-15 16:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2746, + "appointment_count": 2748, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From c41f09ab9360531f5759a63a88d04c10dc5f36bf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:08:41 +0000 Subject: [PATCH 0482/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index be504b94a7a..12e8b35f99c 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:21:23.660053+02:00", + "last_updated": "2021-06-09 08:08:40.928917+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 26f1c69e01028fc52b2847b04f5feb37337ab49e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:09:07 +0000 Subject: [PATCH 0483/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 5430a47ad3a..67664e39157 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:21:51.601202+02:00", + "last_updated": "2021-06-09 08:09:06.918485+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a8328914f10e69bb1da2262f834b67391c581522 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:09:38 +0000 Subject: [PATCH 0484/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index f56a786194c..cce2ddc8fc6 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:22:21.657774+02:00", + "last_updated": "2021-06-09 08:09:37.887460+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-18 11:35:00", + "prochain_rdv": "2021-06-18 11:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 33, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 6b935a58416964c45bef7e1c6348f8777e01af81 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:13:34 +0000 Subject: [PATCH 0485/1182] Updating the times for Region 22 --- 22.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/22.json b/22.json index f93a402b2a8..70715a599f1 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:26:18.057277+02:00", + "last_updated": "2021-06-09 08:13:33.550352+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 09:48:00", + "prochain_rdv": "2021-06-14 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6650, + "appointment_count": 6633, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-21 13:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -77,7 +49,7 @@ "prochain_rdv": "2021-06-17 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 104, + "appointment_count": 91, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:50:00", + "prochain_rdv": "2021-06-09 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 938, + "appointment_count": 882, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:40:00", + "prochain_rdv": "2021-06-09 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 601, + "appointment_count": 574, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,7 +130,7 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:21:00", + "prochain_rdv": "2021-06-21 10:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2366, @@ -229,6 +201,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From f1c37ce9afd6f5516ec7430213f467ca7d709471 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:14:07 +0000 Subject: [PATCH 0486/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index fa6e0e69f3a..973709d7c22 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:26:49.201801+02:00", + "last_updated": "2021-06-09 08:14:06.895236+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 43396308982659eb0b6edc954a3d2e4aba029c36 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 06:34:27 +0000 Subject: [PATCH 0487/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index f43e8cdbc7f..9ec132d8a96 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 432 + "creneaux": 431 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3022 + "creneaux": 3005 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 15, + "disponibles": 14, "total": 52, - "creneaux": 4276 + "creneaux": 4220 }, "08": { - "disponibles": 15, + "disponibles": 14, "total": 30, - "creneaux": 5449 + "creneaux": 5312 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4969 + "creneaux": 4936 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3320 + "creneaux": 3310 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 39 + "creneaux": 33 }, "22": { - "disponibles": 7, + "disponibles": 6, "total": 19, - "creneaux": 11099 + "creneaux": 10972 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 99, + "disponibles": 96, "total": 339, - "creneaux": 46683 + "creneaux": 46296 } } \ No newline at end of file From 4a9a4606ae0f97c7ee163e7aee910d882043d66e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:35:05 +0000 Subject: [PATCH 0488/1182] Updating the times for Region 10 --- 10.json | 124 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/10.json b/10.json index 9269230fda2..474dd2772db 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:55:04.617017+02:00", + "last_updated": "2021-06-09 08:35:05.285340+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-12 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 114, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": "2021-06-09 13:50:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -130,7 +102,7 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 14:20:00", + "prochain_rdv": "2021-06-10 14:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 9, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:05:00", + "prochain_rdv": "2021-06-23 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 54, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +189,7 @@ "prochain_rdv": "2021-06-23 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 15, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-22 16:00:00", + "prochain_rdv": "2021-06-09 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 34, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,7 +270,7 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:10:00", + "prochain_rdv": "2021-06-19 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 104, @@ -310,59 +282,59 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "10", - "nom": "Valjehälsan, Sölvesborg", + "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", + "longitude": 15.116567592895079, + "latitude": 56.227310913111644, + "city": "Ronneby", "cp": "00000" }, "metadata": { - "address": "Herrgårdsvägen 97", + "address": "Parkvägen 4", "business_hours": null, - "phone_number": "0456-329 60" + "phone_number": "0457-73 18 20" }, - "prochain_rdv": "2021-06-10 15:20:00", - "plateforme": "MittVaccin", + "prochain_rdv": null, + "plateforme": null, "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "597", + "appointment_count": 0, + "internal_id": null, "vaccine_type": null, - "appointment_by_phone_only": false, + "appointment_by_phone_only": true, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "10", - "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", + "nom": "Hälsohuset för alla", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.116567592895079, - "latitude": 56.227310913111644, - "city": "Ronneby", + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Parkvägen 4", + "address": "Västra Vittusgatan 4", "business_hours": null, - "phone_number": "0457-73 18 20" + "phone_number": "0455-35 55 00" }, "prochain_rdv": null, - "plateforme": null, + "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": null, + "internal_id": "596", "vaccine_type": null, - "appointment_by_phone_only": true, + "appointment_by_phone_only": false, "erreur": null, "last_scan_with_availabilities": null, "request_counts": null, @@ -537,6 +509,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Valjehälsan, Sölvesborg", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Herrgårdsvägen 97", + "business_hours": null, + "phone_number": "0456-329 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "597", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", From 0e9b5a2a7c71ac65f203928b6327534c55769a8c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:35:54 +0000 Subject: [PATCH 0489/1182] Updating the times for Region 20 --- 20.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/20.json b/20.json index 9b896969fd2..46f7079c8c9 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:55:48.729341+02:00", + "last_updated": "2021-06-09 08:35:53.901583+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-07 13:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2703, + "appointment_count": 2697, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 14:20:00", + "prochain_rdv": "2021-06-24 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 208, + "appointment_count": 206, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-28 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, + "appointment_count": 44, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 318623b3ea200e5955d08e8ae0657e838908ab40 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:36:23 +0000 Subject: [PATCH 0490/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 6714c2c4bca..f8950a282fa 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:56:19.872308+02:00", + "last_updated": "2021-06-09 08:36:23.321013+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a3603c9d0cef88935020782806d355f3b7d066a7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:36:52 +0000 Subject: [PATCH 0491/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 7aa04d042c5..ae1effe8fd2 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:56:43.743827+02:00", + "last_updated": "2021-06-09 08:36:51.718297+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ee5609a210b27e77e5c442a631d47307f6d60a27 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:37:23 +0000 Subject: [PATCH 0492/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index aaf3e99a078..1a6772c923d 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:57:11.274981+02:00", + "last_updated": "2021-06-09 08:37:23.331534+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 73c3f4f461fdcfbe6d6df27a864fc65c5d3fcaeb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:37:55 +0000 Subject: [PATCH 0493/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 2d73de0a22c..4313dac5612 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 07:57:41.665375+02:00", + "last_updated": "2021-06-09 08:37:54.644831+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0a58fd76d8a10916dcbec2429d3b29de2cdc877b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:41:18 +0000 Subject: [PATCH 0494/1182] Updating the times for Region 06 --- 06.json | 196 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 98 insertions(+), 98 deletions(-) diff --git a/06.json b/06.json index 18d609c2618..66ef4c908bb 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:01:15.871044+02:00", + "last_updated": "2021-06-09 08:41:17.463683+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:05:00", + "prochain_rdv": "2021-06-23 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 81, + "appointment_count": 80, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", - "business_hours": null, - "phone_number": "010-242 35 20" - }, - "prochain_rdv": "2021-06-24 13:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 6, - "internal_id": "1198", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-07-01 10:25:00", + "prochain_rdv": "2021-07-01 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 9, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 11:50:00", + "prochain_rdv": "2021-06-16 08:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 38, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +161,7 @@ "prochain_rdv": "2021-06-23 20:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1704, + "appointment_count": 1696, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +171,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": "2021-06-17 10:09:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -242,10 +186,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 08:50:00", + "prochain_rdv": "2021-06-22 19:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 210, + "appointment_count": 195, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:36:00", + "prochain_rdv": "2021-06-30 09:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 42, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +255,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vetlanda vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Norrvägen 2 B, Vetlanda", + "business_hours": null, + "phone_number": "010-243 20 10" + }, + "prochain_rdv": "2021-06-22 11:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "2050", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 09:50:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 50, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -705,6 +677,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "business_hours": null, + "phone_number": "010-242 35 20" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1198", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -817,6 +817,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -985,34 +1013,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vetlanda vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 15.081352462610193, - "latitude": 57.432375422981, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Norrvägen 2 B, Vetlanda", - "business_hours": null, - "phone_number": "010-243 20 10" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2050", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", From ba37bb75349e072ed7fb95bbe81851ec461b2760 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:44:58 +0000 Subject: [PATCH 0495/1182] Updating the times for Region 08 --- 08.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/08.json b/08.json index cb722860665..45f3000f605 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:04:56.650335+02:00", + "last_updated": "2021-06-09 08:44:57.584817+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 58, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-16 10:10:00", + "prochain_rdv": "2021-06-16 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 75, + "appointment_count": 49, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 10:25:00", + "prochain_rdv": "2021-06-17 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 85, + "appointment_count": 69, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 101, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0499-489 30" }, - "prochain_rdv": "2021-06-16 10:35:00", + "prochain_rdv": "2021-06-16 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 85, + "appointment_count": 46, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:25:00", + "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 238, + "appointment_count": 231, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-10 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 46, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-17 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 229, + "appointment_count": 211, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-14 14:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1626, + "appointment_count": 1608, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:54:00", + "prochain_rdv": "2021-06-15 14:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1192, + "appointment_count": 1168, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:42:00", + "prochain_rdv": "2021-06-09 15:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1111, + "appointment_count": 1102, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:30:00", + "prochain_rdv": "2021-06-17 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 305, + "appointment_count": 296, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 1ff4b226421b50452faaf4be40c3c5a9d1103b43 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:45:49 +0000 Subject: [PATCH 0496/1182] Updating the times for Region 07 --- 07.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/07.json b/07.json index 84f25f11731..da9258ec428 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:05:53.020731+02:00", + "last_updated": "2021-06-09 08:45:48.931574+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:20:00", + "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 202, + "appointment_count": 187, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 11:40:00", + "prochain_rdv": "2021-06-12 10:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 99, + "appointment_count": 102, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:10:00", + "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 272, + "appointment_count": 264, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 15:20:00", + "prochain_rdv": "2021-06-16 15:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 10, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 53, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 15:52:00", + "prochain_rdv": "2021-06-09 09:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4235, + "appointment_count": 4242, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 1b04f74a8b8ff333942c4048b0ce9041bb30630e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:46:18 +0000 Subject: [PATCH 0497/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 6975eeaeacd..6387eb8815f 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:06:24.198083+02:00", + "last_updated": "2021-06-09 08:46:17.476708+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 22fa35faae4338ebba022a45aaa1546dcb18f875 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:46:49 +0000 Subject: [PATCH 0498/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index b4bfec541a6..647159e1b38 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:07:00.409005+02:00", + "last_updated": "2021-06-09 08:46:48.577396+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 891781c05014b92c12db217b3b4a5d817ec0e9f3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:48:01 +0000 Subject: [PATCH 0499/1182] Updating the times for Region 04 --- 04.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/04.json b/04.json index 85149a34a0c..091cd95ea89 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:08:15.330971+02:00", + "last_updated": "2021-06-09 08:48:00.899498+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-15 17:00:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-07-06 19:30:00", + "prochain_rdv": "2021-06-19 10:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 521, + "appointment_count": 500, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +130,7 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-15 16:20:00", + "prochain_rdv": "2021-06-10 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2748, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From e949a5e36182791498f2457e5d40eb7175d6ebe9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:48:32 +0000 Subject: [PATCH 0500/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 12e8b35f99c..68d1857d8a0 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:08:40.928917+02:00", + "last_updated": "2021-06-09 08:48:31.512051+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 226c826986efab4c4ffaeb8b5650f4119b52eb78 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:49:05 +0000 Subject: [PATCH 0501/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 67664e39157..0cd99f64ea3 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:09:06.918485+02:00", + "last_updated": "2021-06-09 08:49:04.502342+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 06a8fdeb2cf02ad6de125a26fa9db2bf37526429 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:49:35 +0000 Subject: [PATCH 0502/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index cce2ddc8fc6..7b7df220f18 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:09:37.887460+02:00", + "last_updated": "2021-06-09 08:49:35.111448+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-18 11:40:00", + "prochain_rdv": "2021-06-15 14:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 28, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 8b168873bf4785930435bf804195641a278a2154 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:53:39 +0000 Subject: [PATCH 0503/1182] Updating the times for Region 22 --- 22.json | 76 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/22.json b/22.json index 70715a599f1..24dfd0e729f 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-09 08:13:33.550352+02:00", + "last_updated": "2021-06-09 08:53:38.887530+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-11 09:52:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 13, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:39:00", + "prochain_rdv": "2021-06-10 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6633, + "appointment_count": 6636, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-17 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 91, + "appointment_count": 104, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 08:55:00", + "prochain_rdv": "2021-06-21 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 882, + "appointment_count": 854, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:45:00", + "prochain_rdv": "2021-06-09 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 574, + "appointment_count": 509, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 10:57:00", + "prochain_rdv": "2021-06-21 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2366, + "appointment_count": 2310, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From 2afc7f38e2048e938a728816ac3f6857b7c4f4b5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 06:54:08 +0000 Subject: [PATCH 0504/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 973709d7c22..f7cbae563e0 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:14:06.895236+02:00", + "last_updated": "2021-06-09 08:54:07.906643+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c30008839ea3121c44b5dd6f3004728c9a184de2 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 07:13:08 +0000 Subject: [PATCH 0505/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 9ec132d8a96..0abe82b9688 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 10, "total": 19, - "creneaux": 431 + "creneaux": 439 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 3005 + "creneaux": 2994 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 14, + "disponibles": 13, "total": 52, - "creneaux": 4220 + "creneaux": 4186 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5312 + "creneaux": 5107 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4936 + "creneaux": 4919 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 3310 + "creneaux": 3290 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 33 + "creneaux": 28 }, "22": { - "disponibles": 6, + "disponibles": 7, "total": 19, - "creneaux": 10972 + "creneaux": 10852 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 96, + "disponibles": 95, "total": 339, - "creneaux": 46296 + "creneaux": 45892 } } \ No newline at end of file From 4f38146ee7557eaaf560d66c4ae203fcdda7afcf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:13:38 +0000 Subject: [PATCH 0506/1182] Updating the times for Region 10 --- 10.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/10.json b/10.json index 474dd2772db..a365558b911 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:35:05.285340+02:00", + "last_updated": "2021-06-09 09:13:38.386476+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:10:00", + "prochain_rdv": "2021-06-15 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 24, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-12 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 111, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 15:35:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 31, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-10 14:05:00", + "prochain_rdv": "2021-06-24 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 9, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:10:00", + "prochain_rdv": "2021-06-23 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 52, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-23 15:40:00", + "prochain_rdv": "2021-06-24 11:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 13, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,7 +214,7 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:00:00", + "prochain_rdv": "2021-06-21 14:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 53, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-09 10:20:00", + "prochain_rdv": "2021-06-09 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 26, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 09:15:00", + "prochain_rdv": "2021-06-19 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 104, + "appointment_count": 98, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From d7b722aa04b6351dc5bfd5b5b6caf763e37934ca Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:14:30 +0000 Subject: [PATCH 0507/1182] Updating the times for Region 20 --- 20.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/20.json b/20.json index 46f7079c8c9..39a2817a9f2 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:35:53.901583+02:00", + "last_updated": "2021-06-09 09:14:29.928764+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 13:16:00", + "prochain_rdv": "2021-07-07 15:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2697, + "appointment_count": 2690, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-24 11:20:00", + "prochain_rdv": "2021-07-08 14:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 206, - "internal_id": "2102", + "appointment_count": 1, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:30:00", + "prochain_rdv": "2021-06-29 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, - "internal_id": "2101", + "appointment_count": 201, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 11:25:00", + "prochain_rdv": "2021-06-28 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, - "internal_id": "2103", + "appointment_count": 46, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,29 +114,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-28 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 42, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -144,19 +142,21 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, @@ -164,7 +164,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2111", + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 721e86d94c5cad1bfc9b93f4d9e82d335af9cb21 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:15:04 +0000 Subject: [PATCH 0508/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index f8950a282fa..2da1e629007 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:36:23.321013+02:00", + "last_updated": "2021-06-09 09:15:03.095896+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 43bef0a250fea40aef3bb73398239dbaf29bc9e2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:15:39 +0000 Subject: [PATCH 0509/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index ae1effe8fd2..3aab25e401a 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:36:51.718297+02:00", + "last_updated": "2021-06-09 09:15:38.899030+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c298f95933cfdf05e017e46cb5fa866a8c3d87e5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:16:05 +0000 Subject: [PATCH 0510/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 1a6772c923d..18bf6983766 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:37:23.331534+02:00", + "last_updated": "2021-06-09 09:16:04.498991+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e1d884e821f4cdc20dab1b0ab912f0beb5aeaf2b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:16:33 +0000 Subject: [PATCH 0511/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 4313dac5612..76b11189da9 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:37:54.644831+02:00", + "last_updated": "2021-06-09 09:16:33.298472+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 214520fc55ad17d48c1f10af3ef7ccf7b5247ec7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:20:03 +0000 Subject: [PATCH 0512/1182] Updating the times for Region 06 --- 06.json | 256 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 128 insertions(+), 128 deletions(-) diff --git a/06.json b/06.json index 66ef4c908bb..9647e0d54db 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:41:17.463683+02:00", + "last_updated": "2021-06-09 09:20:02.211304+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:10:00", + "prochain_rdv": "2021-06-23 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 80, + "appointment_count": 77, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 19:50:00", + "prochain_rdv": "2021-06-22 17:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 184, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-24 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 47, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,6 +87,90 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Gränna vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.46789629286442, + "latitude": 58.02616642345095, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hävdevägen 31, Gränna", + "business_hours": null, + "phone_number": "010-242 49 00" + }, + "prochain_rdv": "2021-06-10 15:56:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 27, + "internal_id": "1183", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": "2021-06-23 09:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "business_hours": null, + "phone_number": "010-242 35 20" + }, + "prochain_rdv": "2021-06-23 15:18:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1198", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", @@ -130,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-16 08:30:00", + "prochain_rdv": "2021-06-30 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 38, + "appointment_count": 26, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 20:21:00", + "prochain_rdv": "2021-06-23 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1696, + "appointment_count": 1704, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -171,6 +255,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": "2021-06-17 14:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -186,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-22 19:45:00", + "prochain_rdv": "2021-06-23 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 195, + "appointment_count": 165, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +329,7 @@ "prochain_rdv": "2021-06-22 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 294, + "appointment_count": 297, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +357,7 @@ "prochain_rdv": "2021-06-30 09:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 40, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +413,7 @@ "prochain_rdv": "2021-06-24 08:46:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1560, + "appointment_count": 1554, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,7 +438,7 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-22 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 50, @@ -565,62 +677,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Gränna vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.46789629286442, - "latitude": 58.02616642345095, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hävdevägen 31, Gränna", - "business_hours": null, - "phone_number": "010-242 49 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1183", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -677,34 +733,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", - "business_hours": null, - "phone_number": "010-242 35 20" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1198", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -817,34 +845,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", From fef436221a213466577433118c1a73bcabd8818a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:23:32 +0000 Subject: [PATCH 0513/1182] Updating the times for Region 08 --- 08.json | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/08.json b/08.json index 45f3000f605..5b601ff5d63 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:44:57.584817+02:00", + "last_updated": "2021-06-09 09:23:31.823423+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 51, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-16 10:20:00", + "prochain_rdv": "2021-06-17 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 50, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 10:35:00", + "prochain_rdv": "2021-06-17 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 76, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:45:00", + "prochain_rdv": "2021-06-15 17:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 92, + "appointment_count": 85, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 35, "internal_id": "492", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:30:00", + "prochain_rdv": "2021-06-16 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 231, + "appointment_count": 238, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-10 17:25:00", + "prochain_rdv": "2021-06-16 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 39, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-17 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 211, + "appointment_count": 213, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:32:00", + "prochain_rdv": "2021-06-14 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1608, + "appointment_count": 1598, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:51:00", + "prochain_rdv": "2021-06-15 14:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1168, + "appointment_count": 1144, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-09 15:51:00", + "prochain_rdv": "2021-06-15 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1102, + "appointment_count": 1093, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +385,7 @@ "prochain_rdv": "2021-06-17 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 296, + "appointment_count": 273, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 1ab55da4d0a2d8bb9e813bec321d4118df74032e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:24:22 +0000 Subject: [PATCH 0514/1182] Updating the times for Region 07 --- 07.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/07.json b/07.json index da9258ec428..10050e4d378 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:45:48.931574+02:00", + "last_updated": "2021-06-09 09:24:21.400500+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 187, + "appointment_count": 185, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 10:00:00", + "prochain_rdv": "2021-06-12 11:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 102, + "appointment_count": 99, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 264, + "appointment_count": 258, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 15:50:00", + "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 8, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 13:40:00", + "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 60, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:40:00", + "prochain_rdv": "2021-06-09 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 54, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 09:56:00", + "prochain_rdv": "2021-06-16 10:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4242, + "appointment_count": 4207, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From ebb1029feed91ce1d1830cdc81c9f7cbd3b3a39f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:24:53 +0000 Subject: [PATCH 0515/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 6387eb8815f..1f79a13fbb5 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:46:17.476708+02:00", + "last_updated": "2021-06-09 09:24:53.105511+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From e8d7d635546e16698bf1f7d98955d687901cb299 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:25:27 +0000 Subject: [PATCH 0516/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 647159e1b38..dda2c8022b8 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:46:48.577396+02:00", + "last_updated": "2021-06-09 09:25:26.570717+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From dbad48206f4a93ab6baee8135dba402d461c1ca9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:26:50 +0000 Subject: [PATCH 0517/1182] Updating the times for Region 04 --- 04.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/04.json b/04.json index 091cd95ea89..2f7c939f1e4 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:48:00.899498+02:00", + "last_updated": "2021-06-09 09:26:49.326052+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:35:00", + "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 18, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-15 17:00:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 15:20:00", + "prochain_rdv": "2021-06-12 08:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 23, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-19 10:51:00", + "prochain_rdv": "2021-06-19 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 500, + "appointment_count": 492, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 15:12:00", + "prochain_rdv": "2021-06-17 11:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2748, + "appointment_count": 2740, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From d78e19d831322850129d2865d122f0f70febbfa5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:27:20 +0000 Subject: [PATCH 0518/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 68d1857d8a0..7c0a0517756 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:48:31.512051+02:00", + "last_updated": "2021-06-09 09:27:19.700795+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b16c2fc693d42a8c93a36cf79cc1787a026f1e7a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:27:50 +0000 Subject: [PATCH 0519/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 0cd99f64ea3..96f0eb4dca1 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:49:04.502342+02:00", + "last_updated": "2021-06-09 09:27:50.121479+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 79fb0c6ae00ab56b8a80a8a020b2b8450ba050e7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:28:23 +0000 Subject: [PATCH 0520/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 7b7df220f18..08362d125ad 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:49:35.111448+02:00", + "last_updated": "2021-06-09 09:28:22.392163+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 14:25:00", + "prochain_rdv": "2021-06-18 16:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 20, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 75388ad61214cc546830bb3bb83c6163beb77e56 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:32:35 +0000 Subject: [PATCH 0521/1182] Updating the times for Region 22 --- 22.json | 78 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/22.json b/22.json index 24dfd0e729f..d315727683f 100644 --- a/22.json +++ b/22.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-09 08:53:38.887530+02:00", + "last_updated": "2021-06-09 09:32:35.305037+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-11 09:52:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 13, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -46,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 09:48:00", + "prochain_rdv": "2021-06-14 09:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6636, + "appointment_count": 6580, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:50:00", + "prochain_rdv": "2021-06-21 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 854, + "appointment_count": 823, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:55:00", + "prochain_rdv": "2021-06-09 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 509, + "appointment_count": 521, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:27:00", + "prochain_rdv": "2021-06-21 11:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2310, + "appointment_count": 2240, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 09:10:00", + "prochain_rdv": "2021-06-16 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 426, + "appointment_count": 1775, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ } ], "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From 2473696c88be132088c531f1e4c3c6c8b81ef342 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:33:04 +0000 Subject: [PATCH 0522/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index f7cbae563e0..4c8d4ceb8bc 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 08:54:07.906643+02:00", + "last_updated": "2021-06-09 09:33:03.601207+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From fa4dd0b8ada70251425c701d76244be766c07ce0 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 07:44:15 +0000 Subject: [PATCH 0523/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 0abe82b9688..5528e713553 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 10, "total": 19, - "creneaux": 439 + "creneaux": 420 }, "20": { - "disponibles": 4, + "disponibles": 5, "total": 8, - "creneaux": 2994 + "creneaux": 2980 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 13, + "disponibles": 17, "total": 52, - "creneaux": 4186 + "creneaux": 4301 }, "08": { "disponibles": 14, "total": 30, - "creneaux": 5107 + "creneaux": 5026 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4919 + "creneaux": 4871 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 3290 + "creneaux": 3273 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 28 + "creneaux": 20 }, "22": { - "disponibles": 7, + "disponibles": 6, "total": 19, - "creneaux": 10852 + "creneaux": 12043 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 95, + "disponibles": 98, "total": 339, - "creneaux": 45892 + "creneaux": 47011 } } \ No newline at end of file From fe4b9e231a0a2b9b98afd9edf29b5f84fefa8f9a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:44:54 +0000 Subject: [PATCH 0524/1182] Updating the times for Region 10 --- 10.json | 78 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/10.json b/10.json index a365558b911..5ff725fd5c5 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:13:38.386476+02:00", + "last_updated": "2021-06-09 09:44:54.411972+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:55:00", + "prochain_rdv": "2021-06-12 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 111, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": "2021-06-24 10:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -74,7 +102,7 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-09 17:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 31, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 14:20:00", + "prochain_rdv": "2021-06-24 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 8, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 11:55:00", + "prochain_rdv": "2021-06-23 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +217,7 @@ "prochain_rdv": "2021-06-24 11:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 12, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +245,7 @@ "prochain_rdv": "2021-06-21 14:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 49, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +273,7 @@ "prochain_rdv": "2021-06-09 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 27, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -313,34 +341,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", From 05a73cb6815348658c4e704d2537331e2f61356b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:45:41 +0000 Subject: [PATCH 0525/1182] Updating the times for Region 20 --- 20.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/20.json b/20.json index 39a2817a9f2..29ed9b36930 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:14:29.928764+02:00", + "last_updated": "2021-06-09 09:45:40.503285+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:44:00", + "prochain_rdv": "2021-07-02 14:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2690, + "appointment_count": 2688, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 14:16:00", + "prochain_rdv": "2021-06-16 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 11:20:00", + "prochain_rdv": "2021-06-21 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 201, - "internal_id": "2102", + "appointment_count": 1, + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:30:00", + "prochain_rdv": "2021-06-29 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, - "internal_id": "2101", + "appointment_count": 201, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +117,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 14:20:00", + "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, - "internal_id": "2103", + "appointment_count": 45, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -142,29 +142,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-29 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 39, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -172,19 +170,21 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2115", + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 0f01bdc5a15512f50977b39952a77d680d3f27e4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:46:08 +0000 Subject: [PATCH 0526/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 2da1e629007..4b1bf9b455c 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:15:03.095896+02:00", + "last_updated": "2021-06-09 09:46:08.303067+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c9e99de5388b08503a198ca2c4c8208dcf4d5ee7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:46:34 +0000 Subject: [PATCH 0527/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 3aab25e401a..25967c687ca 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:15:38.899030+02:00", + "last_updated": "2021-06-09 09:46:33.488085+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a60aed6c9a6a1708d96c831e81125a1ddc151505 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:47:03 +0000 Subject: [PATCH 0528/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 18bf6983766..6f14cd47cf3 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:16:04.498991+02:00", + "last_updated": "2021-06-09 09:47:01.999087+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f91eeb0ee509641774e6d6b807aecb2b9d22dab6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:47:28 +0000 Subject: [PATCH 0529/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 76b11189da9..1a5468a9240 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:16:33.298472+02:00", + "last_updated": "2021-06-09 09:47:28.086638+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9ddd1e9d2698e98e3b3ff4c01a8e331f38ac5301 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:50:50 +0000 Subject: [PATCH 0530/1182] Updating the times for Region 06 --- 06.json | 210 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 105 insertions(+), 105 deletions(-) diff --git a/06.json b/06.json index 9647e0d54db..2629835fe85 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:20:02.211304+02:00", + "last_updated": "2021-06-09 09:50:49.904238+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:15:00", + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 77, + "appointment_count": 76, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:33:00", + "prochain_rdv": "2021-06-24 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, + "appointment_count": 46, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-10 15:56:00", + "prochain_rdv": "2021-06-10 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 93, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,34 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": "2021-06-23 09:48:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 15:18:00", + "prochain_rdv": "2021-06-23 14:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 438, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-07-01 10:45:00", + "prochain_rdv": "2021-07-01 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 15, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 17:20:00", + "prochain_rdv": "2021-06-30 18:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 20, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +217,7 @@ "prochain_rdv": "2021-06-23 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1704, + "appointment_count": 1708, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -255,34 +227,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": "2021-06-17 14:48:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -298,10 +242,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 10:45:00", + "prochain_rdv": "2021-06-23 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 162, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +273,7 @@ "prochain_rdv": "2021-06-22 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 297, + "appointment_count": 300, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +301,7 @@ "prochain_rdv": "2021-06-30 09:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 38, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vetlanda vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 15.081352462610193, - "latitude": 57.432375422981, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Norrvägen 2 B, Vetlanda", - "business_hours": null, - "phone_number": "010-243 20 10" - }, - "prochain_rdv": "2021-06-22 11:35:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "2050", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -413,7 +329,7 @@ "prochain_rdv": "2021-06-24 08:46:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1554, + "appointment_count": 1548, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-29 13:40:00", + "prochain_rdv": "2021-06-22 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 112, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -677,6 +593,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -845,6 +789,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1013,6 +985,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vetlanda vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Norrvägen 2 B, Vetlanda", + "business_hours": null, + "phone_number": "010-243 20 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2050", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", From 2c5884c9651036be6d76cc91fd727c4222ee9e24 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:54:31 +0000 Subject: [PATCH 0531/1182] Updating the times for Region 08 --- 08.json | 80 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/08.json b/08.json index 5b601ff5d63..e320e9a98e4 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:23:31.823423+02:00", + "last_updated": "2021-06-09 09:54:31.249388+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 10:25:00", + "prochain_rdv": "2021-06-17 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, + "appointment_count": 62, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:50:00", + "prochain_rdv": "2021-06-15 17:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 85, + "appointment_count": 83, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,34 +143,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Mönsterås hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.436708819482035, - "latitude": 57.035449569659825, - "city": "Mönsterås", - "cp": "00000" - }, - "metadata": { - "address": "Allégatan 1, Mönsterås", - "business_hours": null, - "phone_number": "0499-489 30" - }, - "prochain_rdv": "2021-06-16 10:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 35, - "internal_id": "492", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Mörbylånga hälsocentral", @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:25:00", + "prochain_rdv": "2021-06-16 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 238, + "appointment_count": 227, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,7 +214,7 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 10:55:00", + "prochain_rdv": "2021-06-16 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 39, @@ -301,7 +273,7 @@ "prochain_rdv": "2021-06-14 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1598, + "appointment_count": 1531, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,7 +298,7 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:54:00", + "prochain_rdv": "2021-06-14 11:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1144, @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:42:00", + "prochain_rdv": "2021-06-15 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1093, + "appointment_count": 1058, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -761,6 +733,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Mönsterås hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.436708819482035, + "latitude": 57.035449569659825, + "city": "Mönsterås", + "cp": "00000" + }, + "metadata": { + "address": "Allégatan 1, Mönsterås", + "business_hours": null, + "phone_number": "0499-489 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "492", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Smedby hälsocentral", From 35ba397d9c0d7f307d60a2a552eb140d758dbe64 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:55:21 +0000 Subject: [PATCH 0532/1182] Updating the times for Region 07 --- 07.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/07.json b/07.json index 10050e4d378..186e53a496d 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:24:21.400500+02:00", + "last_updated": "2021-06-09 09:55:21.158595+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 185, + "appointment_count": 184, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-12 11:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 99, + "appointment_count": 96, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 258, + "appointment_count": 256, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 08:50:00", + "prochain_rdv": "2021-06-15 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 8, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 59, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:10:00", + "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 52, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:52:00", + "prochain_rdv": "2021-06-09 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4207, + "appointment_count": 4221, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From f4c2b984371b9cc62501f4ba8ec591c7a5e29b7b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:55:49 +0000 Subject: [PATCH 0533/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 1f79a13fbb5..5565bc53453 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:24:53.105511+02:00", + "last_updated": "2021-06-09 09:55:48.487554+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c7506c2970de8ec9ddd6511a4ddaf47da27ccc1b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:56:16 +0000 Subject: [PATCH 0534/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index dda2c8022b8..2db7bfc5434 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:25:26.570717+02:00", + "last_updated": "2021-06-09 09:56:15.986569+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 857e3df2b6ec35c7659ded1f5a46a527b802337f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:57:39 +0000 Subject: [PATCH 0535/1182] Updating the times for Region 04 --- 04.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/04.json b/04.json index 2f7c939f1e4..4087d63bfbf 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-09 09:26:49.326052+02:00", + "last_updated": "2021-06-09 09:57:38.574852+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-12 13:40:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Gnesta, Gnesta", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-12 08:50:00", + "prochain_rdv": "2021-06-22 15:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 21, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-19 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 492, + "appointment_count": 490, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 11:28:00", + "prochain_rdv": "2021-06-17 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2740, + "appointment_count": 2736, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Flen, Flen", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" - }, - "metadata": { - "address": "Götgatan 6, 642 37 Flen", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30005, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From d512917b156c0adce67d2b8d2b89a5f757edd69f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:58:08 +0000 Subject: [PATCH 0536/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 7c0a0517756..bfd9081b36b 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:27:19.700795+02:00", + "last_updated": "2021-06-09 09:58:07.984525+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4427178a32ee7c6b2259f2c4db38a88b3b4521e1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:58:38 +0000 Subject: [PATCH 0537/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 96f0eb4dca1..35b349af459 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:27:50.121479+02:00", + "last_updated": "2021-06-09 09:58:38.106858+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 21422de7714e7b6457d223b68ad2ac4cba7a4bc6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:59:10 +0000 Subject: [PATCH 0538/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 08362d125ad..1f0d422f45b 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:28:22.392163+02:00", + "last_updated": "2021-06-09 09:59:09.597221+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-18 16:50:00", + "prochain_rdv": "2021-06-18 16:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 15, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 83e0648cac4ebc02a89fd349c939b0a70f44f37d Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 07:59:10 +0000 Subject: [PATCH 0539/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 5528e713553..9697d873119 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 10, + "disponibles": 11, "total": 19, - "creneaux": 420 + "creneaux": 417 }, "20": { - "disponibles": 5, + "disponibles": 6, "total": 8, - "creneaux": 2980 + "creneaux": 2975 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 17, + "disponibles": 14, "total": 52, - "creneaux": 4301 + "creneaux": 4790 }, "08": { - "disponibles": 14, + "disponibles": 13, "total": 30, - "creneaux": 5026 + "creneaux": 4862 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4871 + "creneaux": 4876 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 3273 + "creneaux": 3266 }, "03": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 98, + "disponibles": 97, "total": 339, - "creneaux": 47011 + "creneaux": 47326 } } \ No newline at end of file From dcdf00d4dd39391844020b9212e4be03dbf1adec Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 07:59:42 +0000 Subject: [PATCH 0540/1182] Updating the times for Region 10 --- 10.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/10.json b/10.json index 5ff725fd5c5..3171e30cf71 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:44:54.411972+02:00", + "last_updated": "2021-06-09 09:59:42.424059+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": "2021-06-24 10:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-09 17:25:00", + "prochain_rdv": "2021-06-22 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 29, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-21 14:30:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 46, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-09 11:10:00", + "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 10:20:00", + "prochain_rdv": "2021-06-19 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 98, + "appointment_count": 97, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -341,6 +313,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", From cad64e63969b68978b110b4808007a9f09c65d31 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:00:37 +0000 Subject: [PATCH 0541/1182] Updating the times for Region 20 --- 20.json | 82 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/20.json b/20.json index 29ed9b36930..b0d039ffeb1 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:45:40.503285+02:00", + "last_updated": "2021-06-09 10:00:36.969670+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-02 14:12:00", + "prochain_rdv": "2021-07-07 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2688, + "appointment_count": 2686, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 15:24:00", + "prochain_rdv": "2021-06-29 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2111", + "appointment_count": 201, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-21 11:20:00", + "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", + "appointment_count": 45, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 11:15:00", + "prochain_rdv": "2021-06-29 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 201, - "internal_id": "2102", + "appointment_count": 39, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,27 +114,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:50:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, - "internal_id": "2101", + "appointment_count": 0, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +147,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 14:20:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, - "internal_id": "2103", + "appointment_count": 0, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -170,21 +172,19 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2112", + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 417829b4646d765f4d56a394df533761a9bf460e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:01:02 +0000 Subject: [PATCH 0542/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 4b1bf9b455c..5f84ccf76ba 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:46:08.303067+02:00", + "last_updated": "2021-06-09 10:01:01.892159+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2d07313d41a0b12e6e35914c2862e85dfdcc1566 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:01:29 +0000 Subject: [PATCH 0543/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 25967c687ca..6156f6fb82f 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:46:33.488085+02:00", + "last_updated": "2021-06-09 10:01:28.955058+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0299858e3a1d4b6c9e7e3e3f4081f536883ffd09 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:01:54 +0000 Subject: [PATCH 0544/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 6f14cd47cf3..8241cfeccb7 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:47:01.999087+02:00", + "last_updated": "2021-06-09 10:01:53.725877+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a17abeded0fa5da48e593aad6ea898c809b1c90a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:02:23 +0000 Subject: [PATCH 0545/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 1a5468a9240..ff85fc1c2f2 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:47:28.086638+02:00", + "last_updated": "2021-06-09 10:02:22.869008+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0a7711816b594ebccf9acb9c9be14806faabf0a8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:03:11 +0000 Subject: [PATCH 0546/1182] Updating the times for Region 22 --- 22.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/22.json b/22.json index d315727683f..e1ec885a5ef 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-09 09:32:35.305037+02:00", + "last_updated": "2021-06-09 10:03:10.493642+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-09 13:43:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 20, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -18,7 +46,7 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:09:00", + "prochain_rdv": "2021-06-14 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 6580, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:15:00", + "prochain_rdv": "2021-06-21 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 823, + "appointment_count": 826, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +133,7 @@ "prochain_rdv": "2021-06-09 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 521, + "appointment_count": 546, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 11:36:00", + "prochain_rdv": "2021-06-21 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2240, + "appointment_count": 2184, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +189,7 @@ "prochain_rdv": "2021-06-16 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1775, + "appointment_count": 1708, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From bd6042d9da1c8da8e3c91867395c268dbf8e5c27 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:03:43 +0000 Subject: [PATCH 0547/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 4c8d4ceb8bc..2c0492cd467 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:33:03.601207+02:00", + "last_updated": "2021-06-09 10:03:43.305136+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e8148c2e0420776251c3143100aedd5a830aa804 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:05:38 +0000 Subject: [PATCH 0548/1182] Updating the times for Region 06 --- 06.json | 132 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/06.json b/06.json index 2629835fe85..554ad456e76 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:50:49.904238+02:00", + "last_updated": "2021-06-09 10:05:37.541094+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 17:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 184, + "appointment_count": 180, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-10 15:40:00", + "prochain_rdv": "2021-06-10 15:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 93, + "appointment_count": 87, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,6 +115,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 54 00" + }, + "prochain_rdv": "2021-06-22 14:24:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1186", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-23 14:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 438, + "appointment_count": 432, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 18:20:00", + "prochain_rdv": "2021-06-24 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 16, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,6 +255,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": "2021-06-30 11:27:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -242,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 10:40:00", + "prochain_rdv": "2021-06-23 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 162, + "appointment_count": 147, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +413,7 @@ "prochain_rdv": "2021-06-22 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 48, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -621,34 +677,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 54 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1186", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", @@ -789,34 +817,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", From 2e2c3d39a487e312e56fbc47b69656af2e664916 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:09:18 +0000 Subject: [PATCH 0549/1182] Updating the times for Region 08 --- 08.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/08.json b/08.json index e320e9a98e4..4a32e705d15 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:54:31.249388+02:00", + "last_updated": "2021-06-09 10:09:17.472817+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 10:35:00", + "prochain_rdv": "2021-06-17 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 55, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:36:00", + "prochain_rdv": "2021-06-14 13:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1531, + "appointment_count": 1539, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:45:00", + "prochain_rdv": "2021-06-09 18:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1058, + "appointment_count": 1066, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 0e76972d8179e199325f6feb9421fee3d75c8113 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:10:06 +0000 Subject: [PATCH 0550/1182] Updating the times for Region 07 --- 07.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/07.json b/07.json index 186e53a496d..5f284115cc4 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:55:21.158595+02:00", + "last_updated": "2021-06-09 10:10:06.025850+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 184, + "appointment_count": 181, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 256, + "appointment_count": 253, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 53, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 10:00:00", + "prochain_rdv": "2021-06-10 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4221, + "appointment_count": 4214, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From ba9765c4b47bf99b6995a33bac4d9765ddc856e8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:10:36 +0000 Subject: [PATCH 0551/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 5565bc53453..513a9afcb34 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:55:48.487554+02:00", + "last_updated": "2021-06-09 10:10:36.125778+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From b1f7d62ee39347a3936b49c5d0af6e962a108552 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:11:04 +0000 Subject: [PATCH 0552/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 2db7bfc5434..0615c13c1a2 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:56:15.986569+02:00", + "last_updated": "2021-06-09 10:11:03.942258+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5fbb99dd9d92bde2bd5b5815fc9cf6f5f9e3fe41 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:12:16 +0000 Subject: [PATCH 0553/1182] Updating the times for Region 04 --- 04.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04.json b/04.json index 4087d63bfbf..0d3decb8c89 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:57:38.574852+02:00", + "last_updated": "2021-06-09 10:12:16.384462+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:45:00", + "prochain_rdv": "2021-06-10 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 19, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-19 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 490, + "appointment_count": 484, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 13:36:00", + "prochain_rdv": "2021-06-16 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2736, From d75be3eb6516b4a7decaed00b2c98a286f45cdba Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:12:47 +0000 Subject: [PATCH 0554/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index bfd9081b36b..51aaab7529b 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:58:07.984525+02:00", + "last_updated": "2021-06-09 10:12:46.555673+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 643fd63f2c3e466afdd747484703d0f800ddf1ed Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:13:20 +0000 Subject: [PATCH 0555/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 35b349af459..aae38596f30 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:58:38.106858+02:00", + "last_updated": "2021-06-09 10:13:19.665754+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From fa86d2f84f4a4108c8033671b202a861266fcd0a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:13:51 +0000 Subject: [PATCH 0556/1182] Updating the times for Region 24 --- 24.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/24.json b/24.json index 1f0d422f45b..e799f6dc214 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 09:59:09.597221+02:00", +======= + "last_updated": "2021-06-09 10:13:51.321648+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +22,17 @@ "business_hours": null, "phone_number": "" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-18 16:55:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 15, +======= + "prochain_rdv": "2021-06-18 17:25:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 11, +>>>>>>> Stashed changes "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From 87f8496ea4271e8fda13ebd834a89c3dfc95d592 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:17:48 +0000 Subject: [PATCH 0557/1182] Updating the times for Region 22 --- 22.json | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/22.json b/22.json index e1ec885a5ef..bc15f356a40 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 10:03:10.493642+02:00", +======= + "last_updated": "2021-06-09 10:17:48.336722+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +50,14 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-14 09:39:00", +======= + "prochain_rdv": "2021-06-14 09:48:00", +>>>>>>> Stashed changes "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6580, + "appointment_count": 6538, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +113,11 @@ "prochain_rdv": "2021-06-21 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 826, +======= + "appointment_count": 812, +>>>>>>> Stashed changes "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +142,14 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:50:00", + "prochain_rdv": "2021-06-09 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 546, +======= + "appointment_count": 519, +>>>>>>> Stashed changes "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +174,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-21 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2184, +======= + "prochain_rdv": "2021-06-21 11:27:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2170, +>>>>>>> Stashed changes "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +209,14 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-16 09:20:00", + "prochain_rdv": "2021-06-16 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 1708, +======= + "appointment_count": 1642, +>>>>>>> Stashed changes "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From b70ed006edbe83fe1a1b31ac6d233515c1bdfedb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:18:22 +0000 Subject: [PATCH 0558/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index 2c0492cd467..7df16d465ce 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 10:03:43.305136+02:00", +======= + "last_updated": "2021-06-09 10:18:21.872055+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 464789f5c2d8a02716000a64e0968c77cd63258e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:30:09 +0000 Subject: [PATCH 0559/1182] Updating the times for Region 10 --- 10.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/10.json b/10.json index 3171e30cf71..62c141e1f72 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 09:59:42.424059+02:00", + "last_updated": "2021-06-09 10:30:09.249414+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-15 15:05:00", + "prochain_rdv": "2021-06-22 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 22, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 10:45:00", + "prochain_rdv": "2021-06-09 14:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 114, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:25:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 29, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:05:00", + "prochain_rdv": "2021-06-24 15:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 13:35:00", + "prochain_rdv": "2021-06-23 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 53, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-24 11:45:00", + "prochain_rdv": "2021-06-23 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 12, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 48, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 08:50:00", + "prochain_rdv": "2021-06-22 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 25, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 10:25:00", + "prochain_rdv": "2021-06-19 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 97, + "appointment_count": 94, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 60ba7560214ecaa8ca6917beca9c486631009b43 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:31:06 +0000 Subject: [PATCH 0560/1182] Updating the times for Region 20 --- 20.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/20.json b/20.json index b0d039ffeb1..616ad8f2645 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:00:36.969670+02:00", + "last_updated": "2021-06-09 10:31:01.226487+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:48:00", + "prochain_rdv": "2021-06-30 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2686, + "appointment_count": 2683, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-17 10:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 11:15:00", + "prochain_rdv": "2021-06-10 16:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 201, + "appointment_count": 199, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Doktor.se / Mora", From 3fe8325337686f0d505145507ea6f374372f2a19 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:31:39 +0000 Subject: [PATCH 0561/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 5f84ccf76ba..3aab89a241f 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:01:01.892159+02:00", + "last_updated": "2021-06-09 10:31:38.683046+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1c833872db18b5e3c941d5519f682f02f4826f8d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:32:08 +0000 Subject: [PATCH 0562/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 6156f6fb82f..f1d6fe9532e 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:01:28.955058+02:00", + "last_updated": "2021-06-09 10:32:07.485128+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ffbf78d4815542aa1742bf0f079d1b04c947a818 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:32:36 +0000 Subject: [PATCH 0563/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 8241cfeccb7..61fc127d1ac 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:01:53.725877+02:00", + "last_updated": "2021-06-09 10:32:36.010339+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ae847f4f4e0d801dc074ac8b4673c5521021ed1f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:33:07 +0000 Subject: [PATCH 0564/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index ff85fc1c2f2..97d78e4dbfe 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:02:22.869008+02:00", + "last_updated": "2021-06-09 10:33:07.395770+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5471a387e4585f3af449818ff8272738e2e13831 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:36:33 +0000 Subject: [PATCH 0565/1182] Updating the times for Region 06 --- 06.json | 210 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 105 insertions(+), 105 deletions(-) diff --git a/06.json b/06.json index 554ad456e76..39e27d88473 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:05:37.541094+02:00", + "last_updated": "2021-06-09 10:36:32.698949+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, + "appointment_count": 73, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 17:10:00", + "prochain_rdv": "2021-06-22 17:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 180, + "appointment_count": 176, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 15:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 87, + "appointment_count": 78, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-22 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 4, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": "2021-06-22 11:04:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:06:00", + "prochain_rdv": "2021-06-23 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 432, + "appointment_count": 441, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 25 10" }, - "prochain_rdv": "2021-07-01 08:40:00", + "prochain_rdv": "2021-07-01 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 6, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +242,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-24 10:30:00", + "prochain_rdv": "2021-06-30 17:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 18, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,7 +270,7 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 13:15:00", + "prochain_rdv": "2021-06-23 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1708, @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "010-242 44 00" }, - "prochain_rdv": "2021-06-30 11:27:00", + "prochain_rdv": "2021-06-10 15:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "1199", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 11:10:00", + "prochain_rdv": "2021-06-23 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 147, + "appointment_count": 144, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +357,7 @@ "prochain_rdv": "2021-06-22 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 300, + "appointment_count": 297, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +385,7 @@ "prochain_rdv": "2021-06-30 09:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 38, + "appointment_count": 40, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,6 +395,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": "2021-06-09 13:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -410,10 +466,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 10:00:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 46, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -450,6 +506,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": "2021-06-18 16:36:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 6, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -677,34 +761,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1041,34 +1097,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", @@ -1349,34 +1377,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 9a267f3ffb397e25cdcbbc1ac28450bd5465a98a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:40:00 +0000 Subject: [PATCH 0566/1182] Updating the times for Region 08 --- 08.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/08.json b/08.json index 4a32e705d15..84cc7829b75 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:09:17.472817+02:00", + "last_updated": "2021-06-09 10:39:59.674271+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0481-49 07 00" }, - "prochain_rdv": "2021-06-17 11:10:00", + "prochain_rdv": "2021-06-17 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 33, "internal_id": "525", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-17 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 62, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:45:00", + "prochain_rdv": "2021-06-15 17:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 83, + "appointment_count": 69, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 14:25:00", + "prochain_rdv": "2021-06-15 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 16, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 11:05:00", + "prochain_rdv": "2021-06-10 17:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 46, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 13:08:00", + "prochain_rdv": "2021-06-14 14:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1539, + "appointment_count": 1497, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:36:00", + "prochain_rdv": "2021-06-15 14:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1144, + "appointment_count": 1136, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-09 18:24:00", + "prochain_rdv": "2021-06-15 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1066, + "appointment_count": 1059, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:35:00", + "prochain_rdv": "2021-06-17 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 273, + "appointment_count": 266, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From a2f333e3f362bbc0b602b32ce1019964afca2148 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:40:49 +0000 Subject: [PATCH 0567/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index 5f284115cc4..44e22528622 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:10:06.025850+02:00", + "last_updated": "2021-06-09 10:40:48.756581+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 181, + "appointment_count": 179, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 253, + "appointment_count": 248, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 16:00:00", + "prochain_rdv": "2021-06-17 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 5, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,7 +158,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-09 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 53, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 15:32:00", + "prochain_rdv": "2021-06-15 10:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4214, + "appointment_count": 4207, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From d57c597d3301642cd9d32da9bf30bd79e895a283 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:41:18 +0000 Subject: [PATCH 0568/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 513a9afcb34..2a280f28c66 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:10:36.125778+02:00", + "last_updated": "2021-06-09 10:41:17.532506+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 6ac7d2f391d12b698084982b56bf9ee7516fc82a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:41:48 +0000 Subject: [PATCH 0569/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 0615c13c1a2..faa9c0dccf9 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:11:03.942258+02:00", + "last_updated": "2021-06-09 10:41:48.047055+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 762240818cf4fe792b4982f96230829efe52d9cb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:43:17 +0000 Subject: [PATCH 0570/1182] Updating the times for Region 04 --- 04.json | 60 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/04.json b/04.json index 0d3decb8c89..c8f81f3a855 100644 --- a/04.json +++ b/04.json @@ -1,28 +1,28 @@ { "version": 1, - "last_updated": "2021-06-09 10:12:16.384462+02:00", + "last_updated": "2021-06-09 10:43:16.927623+02:00", "last_scrap": [], "centres_disponibles": [ { "departement": "04", - "nom": "Vaccina Flen, Flen", + "nom": "Vaccina Gnesta, Gnesta", "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" }, "metadata": { - "address": "Götgatan 6, 642 37 Flen", + "address": "Dansutvägen 2, 646 30 Gnesta", "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-12 13:40:00", + "prochain_rdv": "2021-06-10 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30005, + "appointment_count": 20, + "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -33,24 +33,24 @@ }, { "departement": "04", - "nom": "Vaccina Gnesta, Gnesta", + "nom": "Vaccina Strängnäs, Strängnäs", "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", "location": { - "longitude": 17.326507675212333, - "latitude": 59.03994773439347, - "city": "Gnesta", - "cp": "64630" + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" }, "metadata": { - "address": "Dansutvägen 2, 646 30 Gnesta", + "address": "Seminarievägen 10A, 645 33 Strängnäs", "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 09:00:00", + "prochain_rdv": "2021-06-19 09:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 19, - "internal_id": 30004, + "appointment_count": 1, + "internal_id": 30003, "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-19 10:54:00", + "prochain_rdv": "2021-06-19 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 484, + "appointment_count": 482, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-16 15:40:00", + "prochain_rdv": "2021-06-17 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2736, + "appointment_count": 2730, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -231,16 +231,16 @@ }, { "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", + "nom": "Vaccina Flen, Flen", "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" }, "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", + "address": "Götgatan 6, 642 37 Flen", "business_hours": null, "phone_number": "010-750 09 45" }, @@ -248,7 +248,7 @@ "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 0, - "internal_id": 30003, + "internal_id": 30005, "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 031bcfa49455fe0206554a718e5612f22942a839 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:43:46 +0000 Subject: [PATCH 0571/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 51aaab7529b..9eb12901d6b 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:12:46.555673+02:00", + "last_updated": "2021-06-09 10:43:45.956737+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cd9ed17764043966abd102de0da572cdbd0847e6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:44:17 +0000 Subject: [PATCH 0572/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index aae38596f30..3dc04ba40bd 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:13:19.665754+02:00", + "last_updated": "2021-06-09 10:44:16.797579+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 153d8e70e1f579a208088ae230d3f6197c652c5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:44:46 +0000 Subject: [PATCH 0573/1182] Updating the times for Region 24 --- 24.json | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/24.json b/24.json index e799f6dc214..e65b1f81e75 100644 --- a/24.json +++ b/24.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 09:59:09.597221+02:00", -======= - "last_updated": "2021-06-09 10:13:51.321648+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 10:44:45.683133+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -22,17 +18,10 @@ "business_hours": null, "phone_number": "" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-18 16:55:00", + "prochain_rdv": "2021-06-17 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 15, -======= - "prochain_rdv": "2021-06-18 17:25:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 11, ->>>>>>> Stashed changes + "appointment_count": 9, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From ad152cd9194cf005553a5d9c2dfc29db5dd85781 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:48:54 +0000 Subject: [PATCH 0574/1182] Updating the times for Region 22 --- 22.json | 103 +++++++++++++++++++++----------------------------------- 1 file changed, 38 insertions(+), 65 deletions(-) diff --git a/22.json b/22.json index bc15f356a40..5b48e1560af 100644 --- a/22.json +++ b/22.json @@ -1,40 +1,8 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 10:03:10.493642+02:00", -======= - "last_updated": "2021-06-09 10:17:48.336722+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 10:48:53.582918+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-09 13:43:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 20, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -50,14 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-14 09:39:00", -======= - "prochain_rdv": "2021-06-14 09:48:00", ->>>>>>> Stashed changes + "prochain_rdv": "2021-06-14 08:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6538, + "appointment_count": 5432, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -110,14 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 08:50:00", + "prochain_rdv": "2021-06-21 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 826, -======= - "appointment_count": 812, ->>>>>>> Stashed changes + "appointment_count": 798, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -142,14 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:55:00", + "prochain_rdv": "2021-06-09 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 546, -======= - "appointment_count": 519, ->>>>>>> Stashed changes + "appointment_count": 507, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -174,17 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream "prochain_rdv": "2021-06-21 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2184, -======= - "prochain_rdv": "2021-06-21 11:27:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2170, ->>>>>>> Stashed changes + "appointment_count": 2156, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -209,14 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-16 09:50:00", + "prochain_rdv": "2021-06-16 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 1708, -======= - "appointment_count": 1642, ->>>>>>> Stashed changes + "appointment_count": 1613, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -228,6 +173,34 @@ } ], "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From 46cf3f98122120060829e74e7e905966512a7bab Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:49:23 +0000 Subject: [PATCH 0575/1182] Updating the times for Region 19 --- 19.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/19.json b/19.json index 7df16d465ce..5a909be4978 100644 --- a/19.json +++ b/19.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 10:03:43.305136+02:00", -======= - "last_updated": "2021-06-09 10:18:21.872055+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 10:49:22.958931+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1713146e01cb7748ef42c20a9829fa579121ba2f Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 08:52:13 +0000 Subject: [PATCH 0576/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 9697d873119..48bf7bfd116 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 11, + "disponibles": 10, "total": 19, - "creneaux": 417 + "creneaux": 406 }, "20": { - "disponibles": 6, + "disponibles": 5, "total": 8, - "creneaux": 2975 + "creneaux": 2967 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 14, + "disponibles": 19, "total": 52, - "creneaux": 4790 + "creneaux": 4749 }, "08": { "disponibles": 13, "total": 30, - "creneaux": 4862 + "creneaux": 4776 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4876 + "creneaux": 4847 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 5, "total": 6, - "creneaux": 3266 + "creneaux": 3254 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 20 + "creneaux": 9 }, "22": { "disponibles": 6, "total": 19, - "creneaux": 12043 + "creneaux": 10610 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 97, + "disponibles": 100, "total": 339, - "creneaux": 47326 + "creneaux": 45695 } } \ No newline at end of file From 38d0bf202f56e5c7f8b214904c6666154c6756b4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:52:47 +0000 Subject: [PATCH 0577/1182] Updating the times for Region 10 --- 10.json | 82 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/10.json b/10.json index 62c141e1f72..63f0eb98829 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:30:09.249414+02:00", + "last_updated": "2021-06-09 10:52:47.078772+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:10:00", + "prochain_rdv": "2021-06-22 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 22, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-09 14:35:00", + "prochain_rdv": "2021-06-12 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 28, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:15:00", + "prochain_rdv": "2021-06-24 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 8, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 47, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-22 16:00:00", + "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -255,6 +255,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": "2021-06-16 15:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 10:50:00", + "prochain_rdv": "2021-06-19 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 94, + "appointment_count": 92, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -397,34 +425,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From cf08545b1abdf2ad5d37601f77ba5085b206cf0b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:53:41 +0000 Subject: [PATCH 0578/1182] Updating the times for Region 20 --- 20.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/20.json b/20.json index 616ad8f2645..3118deb4e91 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:31:01.226487+02:00", + "last_updated": "2021-06-09 10:53:40.775686+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 16:00:00", + "prochain_rdv": "2021-07-07 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2683, + "appointment_count": 2679, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-17 10:00:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -74,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 16:25:00", + "prochain_rdv": "2021-06-29 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 199, @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 44, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 14:20:00", + "prochain_rdv": "2021-06-30 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 37, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Doktor.se / Mora", From 1522325f64f72a1dd727a9d1abc476679833ec32 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:54:08 +0000 Subject: [PATCH 0579/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 3aab89a241f..0356e0a5072 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:31:38.683046+02:00", + "last_updated": "2021-06-09 10:54:07.640777+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From af07ef2a2dd2df8bc6c57d8b720216dd39747efb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:54:37 +0000 Subject: [PATCH 0580/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index f1d6fe9532e..16fade3a818 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:32:07.485128+02:00", + "last_updated": "2021-06-09 10:54:36.548693+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f5afbc173a7666538bf970318ebfe5bcfe82df79 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:55:07 +0000 Subject: [PATCH 0581/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 61fc127d1ac..ceccddb79fd 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:32:36.010339+02:00", + "last_updated": "2021-06-09 10:55:06.478989+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1ef70eda94d46982a5853542b94fb50d92965851 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:55:36 +0000 Subject: [PATCH 0582/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 97d78e4dbfe..b55f81e7ec0 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:33:07.395770+02:00", + "last_updated": "2021-06-09 10:55:35.440695+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 419286723ec507bd01ea054ff792440ac73e552f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 08:58:58 +0000 Subject: [PATCH 0583/1182] Updating the times for Region 06 --- 06.json | 234 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 117 insertions(+), 117 deletions(-) diff --git a/06.json b/06.json index 39e27d88473..593c25bee24 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:36:32.698949+02:00", + "last_updated": "2021-06-09 10:58:57.436085+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 73, + "appointment_count": 74, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 15:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 69, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -117,24 +117,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "nom": "Bra Liv Habo vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Kärrsvägen 37, Habo", "business_hours": null, - "phone_number": "010-242 54 00" + "phone_number": "010-242 48 00" }, - "prochain_rdv": "2021-06-22 14:24:00", + "prochain_rdv": "2021-06-17 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1186", + "appointment_count": 8, + "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,7 +145,7 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.158432109596234, @@ -156,13 +156,13 @@ "metadata": { "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-22 11:04:00", + "prochain_rdv": "2021-06-22 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2, - "internal_id": "1187", + "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 11:42:00", + "prochain_rdv": "2021-06-23 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 441, + "appointment_count": 444, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-30 17:10:00", + "prochain_rdv": "2021-06-23 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 15, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": "2021-06-10 15:54:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:32:00", + "prochain_rdv": "2021-06-22 15:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 297, + "appointment_count": 294, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -395,34 +367,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": "2021-06-09 13:00:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -438,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 08:46:00", + "prochain_rdv": "2021-06-24 08:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1548, + "appointment_count": 1542, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,10 +410,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-22 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 44, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -506,34 +450,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": "2021-06-18 16:36:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 6, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ @@ -735,24 +651,24 @@ }, { "departement": "06", - "nom": "Bra Liv Habo vårdcentral", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Kärrsvägen 37, Habo", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-242 48 00" + "phone_number": "010-242 58 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1184", + "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -873,6 +789,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1097,6 +1041,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", @@ -1377,6 +1349,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From a1f0954d34145c3eb584cb284eb9082c16c4654f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:02:29 +0000 Subject: [PATCH 0584/1182] Updating the times for Region 08 --- 08.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/08.json b/08.json index 84cc7829b75..5ac8e4d3b87 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:39:59.674271+02:00", + "last_updated": "2021-06-09 11:02:28.078073+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 44, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-15 17:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 76, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:05:00", + "prochain_rdv": "2021-06-16 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 227, + "appointment_count": 220, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0495-236 40" }, - "prochain_rdv": "2021-06-15 15:00:00", + "prochain_rdv": "2021-06-15 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 7, "internal_id": "515", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-10 17:35:00", + "prochain_rdv": "2021-06-16 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 39, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:28:00", + "prochain_rdv": "2021-06-14 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1497, + "appointment_count": 1498, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-15 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1059, + "appointment_count": 1051, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 53a3500aed7eac01392c9583c661204a7e2c5bf4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:03:18 +0000 Subject: [PATCH 0585/1182] Updating the times for Region 07 --- 07.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/07.json b/07.json index 44e22528622..247e630f5c3 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:40:48.756581+02:00", + "last_updated": "2021-06-09 11:03:18.353170+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 179, + "appointment_count": 176, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 11:40:00", + "prochain_rdv": "2021-06-15 09:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 96, + "appointment_count": 94, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 248, + "appointment_count": 245, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 59, + "appointment_count": 58, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 11:10:00", + "prochain_rdv": "2021-06-16 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 52, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 10:28:00", + "prochain_rdv": "2021-06-09 16:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4207, + "appointment_count": 4235, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 839c886abea432c38effe2485239253025d3b3e2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:03:50 +0000 Subject: [PATCH 0586/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 2a280f28c66..8ff998d55b2 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:41:17.532506+02:00", + "last_updated": "2021-06-09 11:03:49.918445+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From db6875deaab2c1dfdf9678106d9e3b98b663b7d4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:04:22 +0000 Subject: [PATCH 0587/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index faa9c0dccf9..4bccf8a7a42 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:41:48.047055+02:00", + "last_updated": "2021-06-09 11:04:22.270181+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From cc10d3b5e6205011b01f2f27821359c569080fe9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:05:43 +0000 Subject: [PATCH 0588/1182] Updating the times for Region 04 --- 04.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/04.json b/04.json index c8f81f3a855..995cde9e9ad 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:43:16.927623+02:00", + "last_updated": "2021-06-09 11:05:42.982052+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 09:00:00", + "prochain_rdv": "2021-06-16 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 19, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-19 09:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": 30003, "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-19 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 482, + "appointment_count": 476, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-17 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2730, + "appointment_count": 2724, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 5910cdab4a9fc297d8d821321a4685368ab0be44 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:06:10 +0000 Subject: [PATCH 0589/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 9eb12901d6b..32f018c7216 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:43:45.956737+02:00", + "last_updated": "2021-06-09 11:06:10.292728+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 69a1e1b2753fed0bdfdfb3144732e79efa66e94e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:06:40 +0000 Subject: [PATCH 0590/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 3dc04ba40bd..371e92c62b8 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:44:16.797579+02:00", + "last_updated": "2021-06-09 11:06:40.387363+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b560d5c74881ccd13b994f6804e632a49e82a0e6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:07:12 +0000 Subject: [PATCH 0591/1182] Updating the times for Region 24 --- 24.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24.json b/24.json index e65b1f81e75..2f4a36e0673 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:44:45.683133+02:00", + "last_updated": "2021-06-09 11:07:12.095339+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 09:00:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 8, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From aa0869e81d0acf72afaaa0ca172af0fa58069330 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:11:26 +0000 Subject: [PATCH 0592/1182] Updating the times for Region 22 --- 22.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/22.json b/22.json index 5b48e1560af..f42c4105b39 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-09 10:48:53.582918+02:00", + "last_updated": "2021-06-09 11:11:25.503760+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-11 09:38:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 13, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-21 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 798, + "appointment_count": 812, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 10:50:00", + "prochain_rdv": "2021-06-09 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 507, + "appointment_count": 652, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-21 13:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2156, + "appointment_count": 2966, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +189,7 @@ "prochain_rdv": "2021-06-16 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1613, + "appointment_count": 1558, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", From 4864b13693a31e502c103d9e72450ec4312eac21 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:11:54 +0000 Subject: [PATCH 0593/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 5a909be4978..32e22aed173 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:49:22.958931+02:00", + "last_updated": "2021-06-09 11:11:54.012111+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From abfeccf8be0f8212dc91c2582edc2cd204fa5779 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 09:22:17 +0000 Subject: [PATCH 0594/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 48bf7bfd116..eb52d581a5a 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 10, + "disponibles": 11, "total": 19, - "creneaux": 406 + "creneaux": 403 }, "20": { - "disponibles": 5, + "disponibles": 4, "total": 8, - "creneaux": 2967 + "creneaux": 2959 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 19, + "disponibles": 16, "total": 52, - "creneaux": 4749 + "creneaux": 4724 }, "08": { "disponibles": 13, "total": 30, - "creneaux": 4776 + "creneaux": 4746 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4847 + "creneaux": 4865 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 5, "total": 6, - "creneaux": 3254 + "creneaux": 3242 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 9 + "creneaux": 8 }, "22": { - "disponibles": 6, + "disponibles": 7, "total": 19, - "creneaux": 10610 + "creneaux": 11537 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 100, + "disponibles": 98, "total": 339, - "creneaux": 45695 + "creneaux": 46561 } } \ No newline at end of file From 6b1e619cd24ffff48f04d405cb2ece0b1d674e23 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:22:49 +0000 Subject: [PATCH 0595/1182] Updating the times for Region 10 --- 10.json | 128 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/10.json b/10.json index 63f0eb98829..cb7d07a9f2c 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:52:47.078772+02:00", + "last_updated": "2021-06-09 11:22:49.189054+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:50:00", + "prochain_rdv": "2021-06-15 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 23, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:55:00", + "prochain_rdv": "2021-06-09 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 112, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:30:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 31, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:05:00", + "prochain_rdv": "2021-06-24 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 7, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-23 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:15:00", + "prochain_rdv": "2021-06-23 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 52, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-23 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 11, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, + "appointment_count": 46, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 08:50:00", + "prochain_rdv": "2021-06-09 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 25, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,24 +257,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Samariten vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" + "longitude": 14.851766499969292, + "latitude": 56.1871016915944, + "city": "Karlshamn", + "cp": "37480" }, "metadata": { - "address": "Movägen 4", + "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-16 15:55:00", + "prochain_rdv": "2021-06-19 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "585", + "appointment_count": 89, + "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -285,24 +285,24 @@ }, { "departement": "10", - "nom": "Samariten vårdcentral, Karlshamn", + "nom": "Wämö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.851766499969292, - "latitude": 56.1871016915944, - "city": "Karlshamn", - "cp": "37480" + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" }, "metadata": { - "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", "business_hours": null, - "phone_number": "0454-73 34 02" + "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-19 11:15:00", + "prochain_rdv": "2021-06-10 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 92, - "internal_id": "577", + "appointment_count": 8, + "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -425,6 +425,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", @@ -536,34 +564,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 54 30" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "581", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ] } \ No newline at end of file From eb2c38f0b341d41af8333f44cf38284f0b4676e7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:23:39 +0000 Subject: [PATCH 0596/1182] Updating the times for Region 20 --- 20.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/20.json b/20.json index 3118deb4e91..8db85d60245 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:53:40.775686+02:00", + "last_updated": "2021-06-09 11:23:39.172975+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 11:25:00", + "prochain_rdv": "2021-06-10 16:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 199, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:15:00", + "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 94968f88f8dd035d50cf549436d5ad79944e0bd9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:24:10 +0000 Subject: [PATCH 0597/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 0356e0a5072..5fbe1a2fbea 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:54:07.640777+02:00", + "last_updated": "2021-06-09 11:24:09.706696+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bbb6a3010446bae12c7e5dc98cdc62fc8892136a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:24:43 +0000 Subject: [PATCH 0598/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 16fade3a818..5f8afb34180 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:54:36.548693+02:00", + "last_updated": "2021-06-09 11:24:42.491318+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1710454742e78f0e26d69b187c39f6aad3ca11a1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:25:17 +0000 Subject: [PATCH 0599/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ceccddb79fd..155a2d17080 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:55:06.478989+02:00", + "last_updated": "2021-06-09 11:25:16.381722+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9e5266165ba973f9e6da4d7b34f4a6c64f853129 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:25:46 +0000 Subject: [PATCH 0600/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index b55f81e7ec0..85ec1aa6752 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:55:35.440695+02:00", + "last_updated": "2021-06-09 11:25:46.379739+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bc1964b227d20b6b57de3a90c976b303683353dd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:28:58 +0000 Subject: [PATCH 0601/1182] Updating the times for Region 06 --- 06.json | 264 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 132 insertions(+), 132 deletions(-) diff --git a/06.json b/06.json index 593c25bee24..00b4ef42f3b 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 10:58:57.436085+02:00", + "last_updated": "2021-06-09 11:28:57.693845+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-10 15:56:00", + "prochain_rdv": "2021-06-16 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 57, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,62 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": "2021-06-17 10:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 8, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 54 00" - }, - "prochain_rdv": "2021-06-22 14:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1186", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -186,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:09:00", + "prochain_rdv": "2021-06-23 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 444, + "appointment_count": 438, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +161,7 @@ "prochain_rdv": "2021-07-01 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 3, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-23 14:00:00", + "prochain_rdv": "2021-06-30 17:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 14, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 15:45:00", + "prochain_rdv": "2021-06-23 20:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1708, + "appointment_count": 1700, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +242,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 13:35:00", + "prochain_rdv": "2021-06-23 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 144, + "appointment_count": 120, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,7 +270,7 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:36:00", + "prochain_rdv": "2021-06-18 13:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 294, @@ -354,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 09:33:00", + "prochain_rdv": "2021-06-30 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 38, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,6 +311,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": "2021-06-22 11:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 08:48:00", + "prochain_rdv": "2021-06-24 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1542, + "appointment_count": 1530, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +385,7 @@ "prochain_rdv": "2021-06-22 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 42, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +410,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-22 15:20:00", + "prochain_rdv": "2021-06-15 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 110, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -450,6 +422,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": "2021-06-24 15:08:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 6, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -649,6 +649,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 54 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1186", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", @@ -1153,34 +1209,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", @@ -1349,34 +1377,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.163034896807421, - "latitude": 57.78214287016117, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Barnarpsgatan 13, Jönköping", - "business_hours": null, - "phone_number": "010-242 84 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1259", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 12dfa45204dfccbddce7163a6d4633198afd530b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:33:00 +0000 Subject: [PATCH 0602/1182] Updating the times for Region 08 --- 08.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/08.json b/08.json index 5ac8e4d3b87..6f37c8272a8 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:02:28.078073+02:00", + "last_updated": "2021-06-09 11:33:00.028668+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:25:00", + "prochain_rdv": "2021-06-16 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 220, + "appointment_count": 213, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -171,34 +171,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Mörlunda hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.86393537513817, - "latitude": 57.31718605791332, - "city": "Hultsfred", - "cp": "00000" - }, - "metadata": { - "address": "Doktorsvägen 6, Mörlunda", - "business_hours": null, - "phone_number": "0495-236 40" - }, - "prochain_rdv": "2021-06-15 15:05:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 7, - "internal_id": "515", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Nybro hälsocentral", @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:36:00", + "prochain_rdv": "2021-06-14 14:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1498, + "appointment_count": 1473, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:51:00", + "prochain_rdv": "2021-06-15 14:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1136, + "appointment_count": 1120, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:45:00", + "prochain_rdv": "2021-06-15 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1051, + "appointment_count": 1025, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -761,6 +733,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Mörlunda hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.86393537513817, + "latitude": 57.31718605791332, + "city": "Hultsfred", + "cp": "00000" + }, + "metadata": { + "address": "Doktorsvägen 6, Mörlunda", + "business_hours": null, + "phone_number": "0495-236 40" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "515", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Smedby hälsocentral", From f31c091afbab63222731677f017f32ec64b57ff7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:33:49 +0000 Subject: [PATCH 0603/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index 247e630f5c3..f1d745c3e35 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:03:18.353170+02:00", + "last_updated": "2021-06-09 11:33:48.476691+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 176, + "appointment_count": 178, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:15:00", + "prochain_rdv": "2021-06-10 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 245, + "appointment_count": 241, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-16 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 57, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 16:20:00", + "prochain_rdv": "2021-06-15 13:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4235, + "appointment_count": 4214, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From b3f50d50eac085aa8b2a37ec9ed4252257aba4c6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:34:19 +0000 Subject: [PATCH 0604/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 8ff998d55b2..11a4161c84d 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:03:49.918445+02:00", + "last_updated": "2021-06-09 11:34:18.425557+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 9cb50c8f12cad203359a57200d2c167a1d0582e0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:34:51 +0000 Subject: [PATCH 0605/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 4bccf8a7a42..e20886411f7 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:04:22.270181+02:00", + "last_updated": "2021-06-09 11:34:51.141981+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 713077e987e10b86383f7f67a79968ccad5ef6f0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:36:06 +0000 Subject: [PATCH 0606/1182] Updating the times for Region 04 --- 04.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/04.json b/04.json index 995cde9e9ad..e4a25dc3f2e 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:05:42.982052+02:00", + "last_updated": "2021-06-09 11:36:05.364167+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-19 09:30:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 15:25:00", + "prochain_rdv": "2021-06-22 15:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 19, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 13:36:00", + "prochain_rdv": "2021-06-16 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2724, + "appointment_count": 2716, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 59a20761e9ee65cc7ea1652fb8e02afcea657f42 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:36:33 +0000 Subject: [PATCH 0607/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 32f018c7216..ebcfc502758 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:06:10.292728+02:00", + "last_updated": "2021-06-09 11:36:32.444065+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ab10ee9561975ee97509db0eca6d68dda799ca64 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:37:05 +0000 Subject: [PATCH 0608/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 371e92c62b8..fa4bec1b077 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:06:40.387363+02:00", + "last_updated": "2021-06-09 11:37:04.951912+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 84f04e94744fc3272f840fc5dc18423f0098745e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:37:33 +0000 Subject: [PATCH 0609/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 2f4a36e0673..4406be3a072 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:07:12.095339+02:00", + "last_updated": "2021-06-09 11:37:33.344559+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 09:00:00", + "prochain_rdv": "2021-06-18 17:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 4, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From a09b5ddce4456c4a77acd6f2d5c5f548aeb8482e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:41:42 +0000 Subject: [PATCH 0610/1182] Updating the times for Region 22 --- 22.json | 80 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/22.json b/22.json index f42c4105b39..e6740beb2d9 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:11:25.503760+02:00", + "last_updated": "2021-06-09 11:41:42.105697+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-11 09:38:00", + "prochain_rdv": "2021-06-10 09:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 26, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 08:30:00", + "prochain_rdv": "2021-06-14 08:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5432, + "appointment_count": 5208, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:20:00", + "prochain_rdv": "2021-06-21 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 812, + "appointment_count": 756, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 11:10:00", + "prochain_rdv": "2021-06-09 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 652, + "appointment_count": 571, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 13:18:00", + "prochain_rdv": "2021-06-21 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2966, + "appointment_count": 2888, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-16 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1558, + "appointment_count": 1491, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -198,6 +198,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Älvens Hus, Sörberge", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.39141654699482, + "latitude": 62.51993793321354, + "city": "Timrå", + "cp": "86030" + }, + "metadata": { + "address": "Älvens hus, Lövuddsvägen 44, 860 30 Sörberge", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-17 09:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "1311", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -481,34 +509,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Älvens Hus, Sörberge", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.39141654699482, - "latitude": 62.51993793321354, - "city": "Timrå", - "cp": "86030" - }, - "metadata": { - "address": "Älvens hus, Lövuddsvägen 44, 860 30 Sörberge", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1311", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Ånge", From 40950368ac631ff150f7181ad54ef698abc94603 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:42:11 +0000 Subject: [PATCH 0611/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 32e22aed173..c71dfc85c9b 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:11:54.012111+02:00", + "last_updated": "2021-06-09 11:42:11.393773+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d1c70c1d9b6f7fe7daac0e8d44764cef6cacbba1 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 09:49:36 +0000 Subject: [PATCH 0612/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index eb52d581a5a..6d78fc053ae 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 11, "total": 19, - "creneaux": 403 + "creneaux": 406 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2959 + "creneaux": 2958 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 16, "total": 52, - "creneaux": 4724 + "creneaux": 4649 }, "08": { - "disponibles": 13, + "disponibles": 12, "total": 30, - "creneaux": 4746 + "creneaux": 4665 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4865 + "creneaux": 4841 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 3242 + "creneaux": 3230 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 8 + "creneaux": 4 }, "22": { - "disponibles": 7, + "disponibles": 8, "total": 19, - "creneaux": 11537 + "creneaux": 11058 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 98, + "disponibles": 97, "total": 339, - "creneaux": 46561 + "creneaux": 45888 } } \ No newline at end of file From d83d58cdb03199e3eb69e38cfabd8c8bfdd27aa0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:50:10 +0000 Subject: [PATCH 0613/1182] Updating the times for Region 10 --- 10.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/10.json b/10.json index cb7d07a9f2c..e12f02b9617 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:22:49.189054+02:00", + "last_updated": "2021-06-09 11:50:08.530541+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-15 15:05:00", + "prochain_rdv": "2021-06-22 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-09 15:00:00", + "prochain_rdv": "2021-06-09 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 114, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Jämjö vårdcentral, Jämjö", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Hammarbyvägen 6", + "business_hours": null, + "phone_number": "0455-73 56 00" + }, + "prochain_rdv": "2021-06-16 13:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "575", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-23 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:20:00", + "prochain_rdv": "2021-06-23 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 50, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-23 15:40:00", + "prochain_rdv": "2021-06-24 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 7, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +245,7 @@ "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 43, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-09 11:30:00", + "prochain_rdv": "2021-06-22 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 23, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 11:20:00", + "prochain_rdv": "2021-06-19 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 89, + "appointment_count": 85, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-10 14:20:00", + "prochain_rdv": "2021-06-10 14:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 7, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -369,34 +397,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Hammarbyvägen 6", - "business_hours": null, - "phone_number": "0455-73 56 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "575", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kungsmarkens vårdcentral, Karlskrona", From 9f26f210540dbb54417cd2fe1906aa01b09bc804 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:50:59 +0000 Subject: [PATCH 0614/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index 8db85d60245..0bde0bab4e5 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:23:39.172975+02:00", + "last_updated": "2021-06-09 11:50:58.942674+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:40:00", + "prochain_rdv": "2021-07-05 11:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2679, + "appointment_count": 2680, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 16:25:00", + "prochain_rdv": "2021-06-30 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 199, + "appointment_count": 196, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:20:00", + "prochain_rdv": "2021-07-01 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 34, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From c3e7c56df7308c0ac4d2c74e790e2f7feb98ed32 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:51:31 +0000 Subject: [PATCH 0615/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 5fbe1a2fbea..f318967228d 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:24:09.706696+02:00", + "last_updated": "2021-06-09 11:51:30.424329+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e837fcc7d005698e2f9b9f71362e2bb6340e6897 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:52:01 +0000 Subject: [PATCH 0616/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 5f8afb34180..bf7222f6ad8 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:24:42.491318+02:00", + "last_updated": "2021-06-09 11:52:00.814451+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cc6f687ef167a732c25abf1c74388e3de9a68d5c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:52:33 +0000 Subject: [PATCH 0617/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 155a2d17080..5eb96d81d1d 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:25:16.381722+02:00", + "last_updated": "2021-06-09 11:52:33.351228+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6da06b2e372a3689d889e82bb6d59113ad5cb375 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:53:03 +0000 Subject: [PATCH 0618/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 85ec1aa6752..99a35c4b73f 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:25:46.379739+02:00", + "last_updated": "2021-06-09 11:53:03.238127+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5423ba339897c5ecb9fc0f2182d7d637ac5fd246 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 09:56:37 +0000 Subject: [PATCH 0619/1182] Updating the times for Region 06 --- 06.json | 184 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 92 insertions(+), 92 deletions(-) diff --git a/06.json b/06.json index 00b4ef42f3b..b0ab3a92024 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:28:57.693845+02:00", + "last_updated": "2021-06-09 11:56:37.175203+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-16 15:20:00", + "prochain_rdv": "2021-06-16 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 51, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-23 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 438, + "appointment_count": 432, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,24 +145,24 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Mullsjö vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", + "longitude": 13.88589429818079, + "latitude": 57.92107739299626, + "city": "Mullsjö", "cp": "00000" }, "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Gunnarsbovägen 35, Mullsjö", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-07-01 10:55:00", + "prochain_rdv": "2021-07-01 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1190", + "appointment_count": 12, + "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +173,24 @@ }, { "departement": "06", - "nom": "Bra Liv Mullsjö vårdcentral", + "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 13.88589429818079, - "latitude": 57.92107739299626, - "city": "Mullsjö", + "longitude": 14.713115286736578, + "latitude": 57.65509346846896, + "city": "Nässjö", "cp": "00000" }, "metadata": { - "address": "Gunnarsbovägen 35, Mullsjö", + "address": "Skansgatan 9, Nässjö", "business_hours": null, - "phone_number": "010-242 47 00" + "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-30 17:50:00", + "prochain_rdv": "2021-06-23 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "1194", + "appointment_count": 1708, + "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +201,24 @@ }, { "departement": "06", - "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.713115286736578, - "latitude": 57.65509346846896, - "city": "Nässjö", + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Skansgatan 9, Nässjö", + "address": "Hermansvägen 5, Jönköping", "business_hours": null, - "phone_number": "010-243 31 70" + "phone_number": "010-242 44 00" }, - "prochain_rdv": "2021-06-23 20:18:00", + "prochain_rdv": "2021-06-17 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1700, - "internal_id": "1196", + "appointment_count": 2, + "internal_id": "1199", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-23 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 120, + "appointment_count": 123, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:36:00", + "prochain_rdv": "2021-06-30 13:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 38, + "appointment_count": 36, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +311,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": "2021-06-22 11:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 08:50:00", + "prochain_rdv": "2021-06-24 08:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1530, + "appointment_count": 1524, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +357,7 @@ "prochain_rdv": "2021-06-22 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 40, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-15 13:30:00", + "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 114, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +410,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 15:08:00", + "prochain_rdv": "2021-06-24 14:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 18, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -763,24 +735,24 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Postgatan 1, Norrahammar", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 39 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1494", + "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -791,7 +763,7 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.117167961555985, @@ -808,7 +780,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1195", + "internal_id": "1494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -819,24 +791,24 @@ }, { "departement": "06", - "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.713115286736578, - "latitude": 57.65509346846896, - "city": "Nässjö", + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Skansgatan 9, Nässjö", + "address": "Postgatan 1, Norrahammar", "business_hours": null, - "phone_number": "010-243 31 70" + "phone_number": "010-242 39 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1191", + "internal_id": "1195", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -847,24 +819,24 @@ }, { "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", + "longitude": 14.713115286736578, + "latitude": 57.65509346846896, + "city": "Nässjö", "cp": "00000" }, "metadata": { - "address": "Hermansvägen 5, Jönköping", + "address": "Skansgatan 9, Nässjö", "business_hours": null, - "phone_number": "010-242 44 00" + "phone_number": "010-243 31 70" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1199", + "internal_id": "1191", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1209,6 +1181,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From 6106806f91275f9bfd77bceada5d88920f1fe166 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:00:11 +0000 Subject: [PATCH 0620/1182] Updating the times for Region 08 --- 08.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/08.json b/08.json index 6f37c8272a8..d72d6af840b 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:33:00.028668+02:00", + "last_updated": "2021-06-09 12:00:10.564370+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 37, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 101, + "appointment_count": 85, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 11:05:00", + "prochain_rdv": "2021-06-16 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 23, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 14:42:00", + "prochain_rdv": "2021-06-17 08:26:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1473, + "appointment_count": 1448, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:54:00", + "prochain_rdv": "2021-06-15 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1120, + "appointment_count": 1112, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:48:00", + "prochain_rdv": "2021-06-15 13:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1025, + "appointment_count": 1008, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 90cf4f51e68f7507b7f9264a1fe05bd08f4fd749 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:01:02 +0000 Subject: [PATCH 0621/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index f1d745c3e35..f645c80f574 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:33:48.476691+02:00", + "last_updated": "2021-06-09 12:01:00.847028+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 94, + "appointment_count": 93, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 241, + "appointment_count": 240, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 10:40:00", + "prochain_rdv": "2021-06-16 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 6, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 13:24:00", + "prochain_rdv": "2021-06-09 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4214, + "appointment_count": 4228, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 370004ccad1b77f918e713472664cde0d98c410b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:01:30 +0000 Subject: [PATCH 0622/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 11a4161c84d..cc57f5c5c9f 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:34:18.425557+02:00", + "last_updated": "2021-06-09 12:01:29.545753+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 90fcf91f005154fdd78d8d55bf4e23a2b8c8896f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:02:00 +0000 Subject: [PATCH 0623/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index e20886411f7..ea8f85b1aee 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:34:51.141981+02:00", + "last_updated": "2021-06-09 12:02:00.164913+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8480b90aefc9351ee63523f4f6ba67f1882fe1f4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:03:18 +0000 Subject: [PATCH 0624/1182] Updating the times for Region 04 --- 04.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/04.json b/04.json index e4a25dc3f2e..bd1cc03f07b 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:36:05.364167+02:00", + "last_updated": "2021-06-09 12:03:17.593390+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-19 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 476, + "appointment_count": 474, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-16 15:40:00", + "prochain_rdv": "2021-06-11 11:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2716, + "appointment_count": 2714, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From e1c5fe2778357381d83d9ad28123f8d3c9d4de1c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:03:48 +0000 Subject: [PATCH 0625/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index ebcfc502758..3c466b62116 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:36:32.444065+02:00", + "last_updated": "2021-06-09 12:03:48.169838+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 73168b0d53fc07222e8b1b84cdb00c9da5f9c256 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:04:19 +0000 Subject: [PATCH 0626/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index fa4bec1b077..a08da402387 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:37:04.951912+02:00", + "last_updated": "2021-06-09 12:04:19.018838+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From be8ed6e151a0a5e5b3f9c8955a7aba23898c2673 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:04:48 +0000 Subject: [PATCH 0627/1182] Updating the times for Region 24 --- 24.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24.json b/24.json index 4406be3a072..5eb1f3f9f9f 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:37:33.344559+02:00", + "last_updated": "2021-06-09 12:04:48.336294+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-18 17:35:00", + "prochain_rdv": "2021-06-14 16:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 3, "internal_id": 30617, "vaccine_type": null, "appointment_by_phone_only": false, From a0a817d0fddcea0e76afea77a4f541387d69d62c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:08:48 +0000 Subject: [PATCH 0628/1182] Updating the times for Region 22 --- 22.json | 102 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/22.json b/22.json index e6740beb2d9..3721b6312e0 100644 --- a/22.json +++ b/22.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-09 11:41:42.105697+02:00", + "last_updated": "2021-06-09 12:08:48.206656+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-10 09:24:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 26, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -46,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 08:54:00", + "prochain_rdv": "2021-06-14 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5208, + "appointment_count": 4760, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:25:00", + "prochain_rdv": "2021-06-14 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 756, + "appointment_count": 2226, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +105,7 @@ "prochain_rdv": "2021-06-09 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 571, + "appointment_count": 596, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 13:27:00", + "prochain_rdv": "2021-06-21 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2888, + "appointment_count": 2657, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-16 10:10:00", + "prochain_rdv": "2021-06-16 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1491, + "appointment_count": 1294, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -198,27 +170,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "22", - "nom": "Vaccinationsenhet Älvens Hus, Sörberge", + "nom": "Vaccinationsenhet Bollsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.39141654699482, - "latitude": 62.51993793321354, - "city": "Timrå", - "cp": "86030" + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" }, "metadata": { - "address": "Älvens hus, Lövuddsvägen 44, 860 30 Sörberge", + "address": "Bollsta Folketspark, Tunsjövägen 4", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-17 09:05:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "1311", + "appointment_count": 0, + "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -226,9 +200,7 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "22", "nom": "Vaccinationsenhet Fränsta", @@ -509,6 +481,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Älvens Hus, Sörberge", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.39141654699482, + "latitude": 62.51993793321354, + "city": "Timrå", + "cp": "86030" + }, + "metadata": { + "address": "Älvens hus, Lövuddsvägen 44, 860 30 Sörberge", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1311", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Ånge", From effb74e2c83e10353c25a4fc8fab72c0065b42e7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:09:21 +0000 Subject: [PATCH 0629/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index c71dfc85c9b..e972a2b3ba1 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:42:11.393773+02:00", + "last_updated": "2021-06-09 12:09:21.078992+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c83c9ad4e660b0a3c8b502cf90a44a862be6f116 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 10:24:45 +0000 Subject: [PATCH 0630/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 6d78fc053ae..ac4708a31f9 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 11, + "disponibles": 12, "total": 19, - "creneaux": 406 + "creneaux": 392 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2958 + "creneaux": 2954 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 16, + "disponibles": 15, "total": 52, - "creneaux": 4649 + "creneaux": 4650 }, "08": { "disponibles": 12, "total": 30, - "creneaux": 4665 + "creneaux": 4576 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4841 + "creneaux": 4854 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3230 + "creneaux": 3226 }, "03": { "disponibles": 0, @@ -77,12 +77,12 @@ "24": { "disponibles": 1, "total": 4, - "creneaux": 4 + "creneaux": 3 }, "22": { - "disponibles": 8, + "disponibles": 6, "total": 19, - "creneaux": 11058 + "creneaux": 11637 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 97, + "disponibles": 95, "total": 339, - "creneaux": 45888 + "creneaux": 46369 } } \ No newline at end of file From f55c0301440ec75732e6132c4a108ed5bd13a80c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:25:19 +0000 Subject: [PATCH 0631/1182] Updating the times for Region 10 --- 10.json | 140 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/10.json b/10.json index e12f02b9617..534df86c7b4 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:50:08.530541+02:00", + "last_updated": "2021-06-09 12:25:19.307131+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:50:00", + "prochain_rdv": "2021-06-22 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-09 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Hammarbyvägen 6", - "business_hours": null, - "phone_number": "0455-73 56 00" - }, - "prochain_rdv": "2021-06-16 13:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "575", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:10:00", + "prochain_rdv": "2021-06-24 15:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +133,7 @@ "prochain_rdv": "2021-06-23 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:30:00", + "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 49, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,7 +186,7 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-24 13:00:00", + "prochain_rdv": "2021-06-24 11:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 7, @@ -245,7 +217,7 @@ "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 43, + "appointment_count": 44, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-22 16:00:00", + "prochain_rdv": "2021-06-10 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 33, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +273,7 @@ "prochain_rdv": "2021-06-19 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 85, + "appointment_count": 87, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": "2021-06-23 10:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-10 14:30:00", + "prochain_rdv": "2021-06-10 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -399,24 +399,24 @@ }, { "departement": "10", - "nom": "Kungsmarkens vårdcentral, Karlskrona", + "nom": "Jämjö vårdcentral, Jämjö", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.622468264447424, - "latitude": 56.19424140502793, + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kungsmarksplan 3", + "address": "Hammarbyvägen 6", "business_hours": null, - "phone_number": "0455-61 94 00" + "phone_number": "0455-73 56 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "595", + "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -427,24 +427,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Kungsmarkens vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, + "longitude": 15.622468264447424, + "latitude": 56.19424140502793, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Movägen 4", + "address": "Kungsmarksplan 3", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0455-61 94 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "585", + "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -455,24 +455,24 @@ }, { "departement": "10", - "nom": "Sölvesborgs vårdcentral", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Markgatan 30", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0456-73 13 10" + "phone_number": "0455-73 56 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "576", + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -483,24 +483,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Sölvesborgs vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Markgatan 30", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0456-73 13 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "586", + "internal_id": "576", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 1b2343369d61c82647377fe809c2d2fcee4be69d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:26:11 +0000 Subject: [PATCH 0632/1182] Updating the times for Region 20 --- 20.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/20.json b/20.json index 0bde0bab4e5..1d4991ac4cd 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:50:58.942674+02:00", + "last_updated": "2021-06-09 12:26:10.263437+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 11:32:00", + "prochain_rdv": "2021-07-07 15:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2680, + "appointment_count": 2676, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-30 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 196, + "appointment_count": 198, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:50:00", + "prochain_rdv": "2021-06-15 11:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 42, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 09:30:00", + "prochain_rdv": "2021-07-01 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 31, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From b1184ba5404e986cb731cc5c0478e9a118833592 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:26:38 +0000 Subject: [PATCH 0633/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index f318967228d..296fc8390d9 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:51:30.424329+02:00", + "last_updated": "2021-06-09 12:26:38.061723+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 17c787e0e7753ac2fce80a3f2e031e2baaf1364c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:27:06 +0000 Subject: [PATCH 0634/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index bf7222f6ad8..08321f0b5e0 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:52:00.814451+02:00", + "last_updated": "2021-06-09 12:27:05.789687+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 29d513d51f4313b2fc0f5936142e16c7d6eb1948 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:27:32 +0000 Subject: [PATCH 0635/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 5eb96d81d1d..a92158f2379 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:52:33.351228+02:00", + "last_updated": "2021-06-09 12:27:31.532171+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b8d7b83295aa466fcdc57b76ea276d1fbc2fcf0e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:28:02 +0000 Subject: [PATCH 0636/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 99a35c4b73f..da532cc7a78 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:53:03.238127+02:00", + "last_updated": "2021-06-09 12:28:00.488582+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7bb9d8e34f21aaba448a15e3f57003923cb92cfa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:31:19 +0000 Subject: [PATCH 0637/1182] Updating the times for Region 06 --- 06.json | 142 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 71 insertions(+), 71 deletions(-) diff --git a/06.json b/06.json index b0ab3a92024..9937c5068c7 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 11:56:37.175203+02:00", + "last_updated": "2021-06-09 12:31:18.791645+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 74, + "appointment_count": 73, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 45, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:15:00", + "prochain_rdv": "2021-06-17 11:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 432, + "appointment_count": 441, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Valåkravägen 1, Landsbro", + "business_hours": null, + "phone_number": "010-243 25 10" + }, + "prochain_rdv": "2021-06-23 13:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 6, + "internal_id": "1190", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Mullsjö vårdcentral", @@ -186,7 +214,7 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 15:45:00", + "prochain_rdv": "2021-06-23 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1708, @@ -214,7 +242,7 @@ "business_hours": null, "phone_number": "010-242 44 00" }, - "prochain_rdv": "2021-06-17 15:12:00", + "prochain_rdv": "2021-06-17 13:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 13:40:00", + "prochain_rdv": "2021-06-23 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 123, + "appointment_count": 115, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +301,7 @@ "prochain_rdv": "2021-06-18 13:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 294, + "appointment_count": 288, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:39:00", + "prochain_rdv": "2021-06-30 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 34, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +339,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": "2021-06-22 11:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -357,7 +413,7 @@ "prochain_rdv": "2021-06-22 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 42, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +466,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 14:12:00", + "prochain_rdv": "2021-06-24 14:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 21, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -733,34 +789,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Valåkravägen 1, Landsbro", - "business_hours": null, - "phone_number": "010-243 25 10" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1190", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1181,34 +1209,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From 25adacb8d7f56750e3350e262243ddd1f26539f3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:34:56 +0000 Subject: [PATCH 0638/1182] Updating the times for Region 08 --- 08.json | 76 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/08.json b/08.json index d72d6af840b..b32db7135ab 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:00:10.564370+02:00", + "last_updated": "2021-06-09 12:34:56.019422+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0471-185 14" }, - "prochain_rdv": "2021-06-17 10:40:00", + "prochain_rdv": "2021-06-17 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 46, "internal_id": "506", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 85, + "appointment_count": 78, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Mönsterås hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.436708819482035, + "latitude": 57.035449569659825, + "city": "Mönsterås", + "cp": "00000" + }, + "metadata": { + "address": "Allégatan 1, Mönsterås", + "business_hours": null, + "phone_number": "0499-489 30" + }, + "prochain_rdv": "2021-06-16 13:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 7, + "internal_id": "492", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Mörbylånga hälsocentral", @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "0481-447 60" }, - "prochain_rdv": "2021-06-16 11:10:00", + "prochain_rdv": "2021-06-16 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 14, "internal_id": "499", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-17 08:26:00", + "prochain_rdv": "2021-06-17 08:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1448, + "appointment_count": 1421, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +301,7 @@ "prochain_rdv": "2021-06-15 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1112, + "appointment_count": 1104, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +329,7 @@ "prochain_rdv": "2021-06-15 13:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1008, + "appointment_count": 991, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -705,34 +733,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Mönsterås hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.436708819482035, - "latitude": 57.035449569659825, - "city": "Mönsterås", - "cp": "00000" - }, - "metadata": { - "address": "Allégatan 1, Mönsterås", - "business_hours": null, - "phone_number": "0499-489 30" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "492", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Mörlunda hälsocentral", From 7a670dc34b4f2995e98fa371c46c5711f357706b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:35:46 +0000 Subject: [PATCH 0639/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index f645c80f574..f02237d6137 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:01:00.847028+02:00", + "last_updated": "2021-06-09 12:35:45.874849+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 178, + "appointment_count": 177, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:05:00", + "prochain_rdv": "2021-06-10 09:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 240, + "appointment_count": 238, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 08:50:00", + "prochain_rdv": "2021-06-15 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 56, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 16:00:00", + "prochain_rdv": "2021-06-09 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 4228, From 15637f016318d325c7c84a32d93d84c0e1672f38 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:36:15 +0000 Subject: [PATCH 0640/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index cc57f5c5c9f..209798f0f97 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:01:29.545753+02:00", + "last_updated": "2021-06-09 12:36:15.192991+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7b10a81be09cf8c4b094f1c9bf3099bc67489f69 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:36:43 +0000 Subject: [PATCH 0641/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index ea8f85b1aee..6180e65fe7c 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:02:00.164913+02:00", + "last_updated": "2021-06-09 12:36:43.263033+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From a690f31d4616fa3f35c1eb1602f9466aee69a1ac Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:37:56 +0000 Subject: [PATCH 0642/1182] Updating the times for Region 04 --- 04.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/04.json b/04.json index bd1cc03f07b..ce329751c1e 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:03:17.593390+02:00", + "last_updated": "2021-06-09 12:37:55.513671+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:45:00", + "prochain_rdv": "2021-06-16 09:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 18, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-19 11:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 474, + "appointment_count": 468, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-11 11:24:00", + "prochain_rdv": "2021-06-17 13:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2714, + "appointment_count": 2702, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From f343992de82a89bedc52da9af53d07f425eb8f8f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:38:23 +0000 Subject: [PATCH 0643/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 3c466b62116..91fcafb9fd3 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:03:48.169838+02:00", + "last_updated": "2021-06-09 12:38:22.927194+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5032965ee10306e458e8e707e01490409e5e8197 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:38:52 +0000 Subject: [PATCH 0644/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index a08da402387..ae2c076afce 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:04:19.018838+02:00", + "last_updated": "2021-06-09 12:38:51.717449+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 85ea563c395db115fa4a064d34d0f97558a1cfa8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:39:22 +0000 Subject: [PATCH 0645/1182] Updating the times for Region 24 --- 24.json | 61 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/24.json b/24.json index 5eb1f3f9f9f..831380d8812 100644 --- a/24.json +++ b/24.json @@ -1,37 +1,8 @@ { "version": 1, - "last_updated": "2021-06-09 12:04:48.336294+02:00", + "last_updated": "2021-06-09 12:39:22.159116+02:00", "last_scrap": [], - "centres_disponibles": [ - { - "departement": "24", - "nom": "Skellefteå -", - "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", - "location": { - "longitude": 20.9456521, - "latitude": 64.7500814, - "city": "Skellefteå", - "cp": "93131" - }, - "metadata": { - "address": "Nygatan 50, 931 31 Skellefteå", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-14 16:55:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": 30617, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - } - ], + "centres_disponibles": [], "centres_indisponibles": [ { "departement": "24", @@ -843,6 +814,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "24", + "nom": "Skellefteå -", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.9456521, + "latitude": 64.7500814, + "city": "Skellefteå", + "cp": "93131" + }, + "metadata": { + "address": "Nygatan 50, 931 31 Skellefteå", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30617, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "24", "nom": "Sorsele sjukstuga hälsocentral", From e4a8204353a5fbde22b194f6404a4709d87611b5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:43:33 +0000 Subject: [PATCH 0646/1182] Updating the times for Region 22 --- 22.json | 136 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 68 insertions(+), 68 deletions(-) diff --git a/22.json b/22.json index 3721b6312e0..f83a993740c 100644 --- a/22.json +++ b/22.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-09 12:08:48.206656+02:00", + "last_updated": "2021-06-09 12:43:32.515994+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-10 10:27:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 52, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Curlinghallen Skyttis", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 09:30:00", + "prochain_rdv": "2021-06-14 11:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4760, + "appointment_count": 3616, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-21 13:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Husumgården", @@ -46,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-17 11:42:00", + "prochain_rdv": "2021-06-17 11:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 104, + "appointment_count": 78, "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 08:35:00", + "prochain_rdv": "2021-06-21 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2226, + "appointment_count": 1820, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +161,7 @@ "prochain_rdv": "2021-06-09 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 596, + "appointment_count": 1148, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +186,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 13:57:00", + "prochain_rdv": "2021-06-22 10:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2657, + "appointment_count": 1925, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +214,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-16 11:10:00", + "prochain_rdv": "2021-06-17 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1294, + "appointment_count": 1147, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,62 +229,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Bollsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.6703668135133, - "latitude": 62.99855335986241, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Bollsta Folketspark, Tunsjövägen 4", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1321", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 31483a7430e4103382820dca5c10938b25a529b6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:44:02 +0000 Subject: [PATCH 0647/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index e972a2b3ba1..236920a6011 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:09:21.078992+02:00", + "last_updated": "2021-06-09 12:44:01.696459+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cce237d3cd6e270ea71d6297c67284e6c3184a41 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 10:49:52 +0000 Subject: [PATCH 0648/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index ac4708a31f9..339f326f125 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 12, "total": 19, - "creneaux": 392 + "creneaux": 399 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2954 + "creneaux": 2947 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 15, + "disponibles": 17, "total": 52, - "creneaux": 4650 + "creneaux": 4649 }, "08": { - "disponibles": 12, + "disponibles": 13, "total": 30, - "creneaux": 4576 + "creneaux": 4499 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4854 + "creneaux": 4851 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3226 + "creneaux": 3207 }, "03": { "disponibles": 0, @@ -75,14 +75,14 @@ "creneaux": 0 }, "24": { - "disponibles": 1, + "disponibles": 0, "total": 4, - "creneaux": 3 + "creneaux": 0 }, "22": { - "disponibles": 6, + "disponibles": 8, "total": 19, - "creneaux": 11637 + "creneaux": 9800 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 95, + "disponibles": 99, "total": 339, - "creneaux": 46369 + "creneaux": 44429 } } \ No newline at end of file From 1db9b585c41b303e8a8b5e82a150f2c5716eebfd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:50:25 +0000 Subject: [PATCH 0649/1182] Updating the times for Region 10 --- 10.json | 146 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/10.json b/10.json index 534df86c7b4..ff43275335b 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:25:19.307131+02:00", + "last_updated": "2021-06-09 12:50:24.825512+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:15:00", + "prochain_rdv": "2021-06-22 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 22, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-09 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 114, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": "2021-06-24 13:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-22 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 28, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:15:00", + "prochain_rdv": "2021-06-24 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-23 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +189,7 @@ "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-24 11:45:00", + "prochain_rdv": "2021-06-24 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 2, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +273,7 @@ "prochain_rdv": "2021-06-10 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 31, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -255,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": "2021-06-23 13:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -298,10 +354,10 @@ "business_hours": null, "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-23 10:10:00", + "prochain_rdv": "2021-06-16 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +382,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-10 14:20:00", + "prochain_rdv": "2021-06-10 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 2, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -369,34 +425,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", @@ -453,34 +481,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From f11891969c58406d4fd6dff7f63a4530248f96ec Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:51:12 +0000 Subject: [PATCH 0650/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index 1d4991ac4cd..9f42b150760 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:26:10.263437+02:00", + "last_updated": "2021-06-09 12:51:11.556909+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:40:00", + "prochain_rdv": "2021-07-05 11:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2676, + "appointment_count": 2674, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 11:45:00", + "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 41, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 09:40:00", + "prochain_rdv": "2021-07-01 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 29, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From b9e9ceb905b0203f22a7f8d00def2e77241f6998 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:51:40 +0000 Subject: [PATCH 0651/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 296fc8390d9..fde339702f4 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:26:38.061723+02:00", + "last_updated": "2021-06-09 12:51:40.163273+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5b547203057afee8c0f7e0dafbb12d6e24143d64 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:52:06 +0000 Subject: [PATCH 0652/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 08321f0b5e0..761e4ce88e8 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:27:05.789687+02:00", + "last_updated": "2021-06-09 12:52:06.250148+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a97f27b857dafe9a367393c9466e6996ee5074f2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:52:32 +0000 Subject: [PATCH 0653/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index a92158f2379..ce1ffa031c3 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:27:31.532171+02:00", + "last_updated": "2021-06-09 12:52:31.997579+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9229c46d3437ac20d611ab2ea892c2d94502566a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 10:52:59 +0000 Subject: [PATCH 0654/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index da532cc7a78..b731c66960e 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:28:00.488582+02:00", + "last_updated": "2021-06-09 12:52:58.687401+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From be14117b2ac4bc54b422df7fad6f61f63c206c9e Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 11:19:18 +0000 Subject: [PATCH 0655/1182] Updating the stats --- data/output/stats.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 339f326f125..f312b161425 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 14, "total": 19, - "creneaux": 399 + "creneaux": 393 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2947 + "creneaux": 2942 }, "09": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 99, + "disponibles": 101, "total": 339, - "creneaux": 44429 + "creneaux": 44418 } } \ No newline at end of file From d141de72a66f1ff436ffb303fe4a83839cc2999f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 13:18:44 +0000 Subject: [PATCH 0656/1182] Updating the times for Region 10 --- 10.json | 182 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 91 insertions(+), 91 deletions(-) diff --git a/10.json b/10.json index ff43275335b..47c4caed155 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:50:24.825512+02:00", + "last_updated": "2021-06-09 15:18:43.766147+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:50:00", + "prochain_rdv": "2021-06-22 09:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-09 15:05:00", + "prochain_rdv": "2021-06-10 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 114, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": "2021-06-24 13:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:15:00", + "prochain_rdv": "2021-06-16 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 30, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -117,24 +89,24 @@ }, { "departement": "10", - "nom": "Lyckeby vårdcentral, Lyckeby", + "nom": "Kungsmarkens vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.649367373459722, - "latitude": 56.19862527581323, + "longitude": 15.622468264447424, + "latitude": 56.19424140502793, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Källevägen 12", + "address": "Kungsmarksplan 3", "business_hours": null, - "phone_number": "0455-73 55 00" + "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-24 15:10:00", + "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, - "internal_id": "584", + "appointment_count": 44, + "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +117,24 @@ }, { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Lyckeby vårdcentral, Lyckeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 15.649367373459722, + "latitude": 56.19862527581323, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Källevägen 12", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-23 11:55:00", + "prochain_rdv": "2021-06-24 15:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "592", + "appointment_count": 6, + "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:35:00", + "prochain_rdv": "2021-06-16 16:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 50, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-24 13:50:00", + "prochain_rdv": "2021-06-17 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 4, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-11 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 57, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 10:00:00", + "prochain_rdv": "2021-06-09 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 30, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 11:10:00", + "prochain_rdv": "2021-06-19 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 87, + "appointment_count": 76, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -341,24 +313,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Valjehälsan, Sölvesborg", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Herrgårdsvägen 97", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0456-329 60" }, - "prochain_rdv": "2021-06-16 13:25:00", + "prochain_rdv": "2021-06-10 17:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2, - "internal_id": "586", + "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-10 14:40:00", + "prochain_rdv": "2021-06-21 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -425,6 +397,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", @@ -455,24 +455,24 @@ }, { "departement": "10", - "nom": "Kungsmarkens vårdcentral, Karlskrona", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.622468264447424, - "latitude": 56.19424140502793, - "city": "Karlskrona", + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Kungsmarksplan 3", + "address": "Kungsgatan 44", "business_hours": null, - "phone_number": "0455-61 94 00" + "phone_number": "0454-395 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "595", + "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -511,24 +511,24 @@ }, { "departement": "10", - "nom": "Tvings läkarmottagning, Tving", + "nom": "Trossö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.458891376975423, - "latitude": 56.311424366793545, + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Rävalyckan 2", + "address": "Fortifikationsgatan 9, Karlskrona", "business_hours": null, - "phone_number": "0455-33 05 05" + "phone_number": "0455-73 57 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "594", + "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -539,24 +539,24 @@ }, { "departement": "10", - "nom": "Valjehälsan, Sölvesborg", + "nom": "Tvings läkarmottagning, Tving", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", + "longitude": 15.458891376975423, + "latitude": 56.311424366793545, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Herrgårdsvägen 97", + "address": "Rävalyckan 2", "business_hours": null, - "phone_number": "0456-329 60" + "phone_number": "0455-33 05 05" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "597", + "internal_id": "594", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 1f393b1afcf6c66b3fba1d89d78f937353665e18 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 13:19:31 +0000 Subject: [PATCH 0657/1182] Updating the times for Region 20 --- 20.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/20.json b/20.json index 9f42b150760..cde62c818fe 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:51:11.556909+02:00", + "last_updated": "2021-06-09 15:19:31.036287+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 11:32:00", + "prochain_rdv": "2021-07-07 14:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2674, + "appointment_count": 2657, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Mora", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Mora", + "cp": "00000" + }, + "metadata": { + "address": "Mora Parken restaurang och konferens, Parkvägen", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-07-07 17:12:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2113", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-30 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 198, + "appointment_count": 199, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 11:20:00", + "prochain_rdv": "2021-06-09 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 24, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -200,34 +228,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "20", - "nom": "Doktor.se / Mora", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Mora", - "cp": "00000" - }, - "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2113", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ] } \ No newline at end of file From 979b3e9104bf85d2242be4debe68a268fb013c29 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 13:20:05 +0000 Subject: [PATCH 0658/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index fde339702f4..1ad8ffd8ecb 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:51:40.163273+02:00", + "last_updated": "2021-06-09 15:20:04.457728+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d35c2a8282f2a4de67e65e64b28cd12b081e5175 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 13:20:34 +0000 Subject: [PATCH 0659/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 761e4ce88e8..6754739dc56 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:52:06.250148+02:00", + "last_updated": "2021-06-09 15:20:33.752453+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0605455449ab3fe861cab1ba2b8e5c1b16bb4002 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 13:21:03 +0000 Subject: [PATCH 0660/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ce1ffa031c3..8c5f13107a9 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:52:31.997579+02:00", + "last_updated": "2021-06-09 15:21:03.120507+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d100411a97138d1494fe8b3232357e941b1331cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 13:21:31 +0000 Subject: [PATCH 0661/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index b731c66960e..4371436b205 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:52:58.687401+02:00", + "last_updated": "2021-06-09 15:21:31.252555+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c2baa799db3e401ef678b1584e4e8d8c029d6c31 Mon Sep 17 00:00:00 2001 From: abulascruz Date: Wed, 9 Jun 2021 15:43:12 +0200 Subject: [PATCH 0662/1182] Try different times for Github Actions trigger. --- .github/workflows/scrape_times.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scrape_times.yml b/.github/workflows/scrape_times.yml index 932fc51ae87..c23f1cfa5e0 100644 --- a/.github/workflows/scrape_times.yml +++ b/.github/workflows/scrape_times.yml @@ -2,7 +2,7 @@ name: Scrape Times on: workflow_dispatch: schedule: - - cron: '0,15,30,45 * * * *' + - cron: '5,25,55 * * * *' jobs: scrape: name: Scrape times From 74ebcd67887b81acda7737fc40d1609455fc86bb Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 14:04:40 +0000 Subject: [PATCH 0663/1182] Updating the stats --- data/output/stats.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index f312b161425..a84dc6577d8 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 14, + "disponibles": 13, "total": 19, - "creneaux": 393 + "creneaux": 437 }, "20": { - "disponibles": 4, + "disponibles": 5, "total": 8, - "creneaux": 2942 + "creneaux": 2922 }, "09": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 101, "total": 339, - "creneaux": 44418 + "creneaux": 44442 } } \ No newline at end of file From 68d755213679cd941d82a33fc9e6ea0c5373f398 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:05:33 +0000 Subject: [PATCH 0664/1182] Updating the times for Region 10 --- 10.json | 196 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 98 insertions(+), 98 deletions(-) diff --git a/10.json b/10.json index 47c4caed155..51253adbd34 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 15:18:43.766147+02:00", + "last_updated": "2021-06-09 16:05:32.588592+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:15:00", + "prochain_rdv": "2021-06-15 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 24, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": "2021-06-24 13:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -105,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 42, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:15:00", + "prochain_rdv": "2021-06-24 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 5, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +171,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": "2021-06-15 10:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -186,10 +242,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-17 11:20:00", + "prochain_rdv": "2021-06-24 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 1, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +273,7 @@ "prochain_rdv": "2021-06-11 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 57, + "appointment_count": 56, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +298,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-09 15:20:00", + "prochain_rdv": "2021-06-10 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 32, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,24 +313,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Samariten vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" + "longitude": 14.851766499969292, + "latitude": 56.1871016915944, + "city": "Karlshamn", + "cp": "37480" }, "metadata": { - "address": "Movägen 4", + "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-23 13:55:00", + "prochain_rdv": "2021-06-19 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "585", + "appointment_count": 78, + "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -285,24 +341,24 @@ }, { "departement": "10", - "nom": "Samariten vårdcentral, Karlshamn", + "nom": "Trossö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.851766499969292, - "latitude": 56.1871016915944, - "city": "Karlshamn", - "cp": "37480" + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" }, "metadata": { - "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", + "address": "Fortifikationsgatan 9, Karlskrona", "business_hours": null, - "phone_number": "0454-73 34 02" + "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-19 11:35:00", + "prochain_rdv": "2021-06-23 15:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, - "internal_id": "577", + "appointment_count": 1, + "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -326,10 +382,10 @@ "business_hours": null, "phone_number": "0456-329 60" }, - "prochain_rdv": "2021-06-10 17:10:00", + "prochain_rdv": "2021-06-10 18:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +410,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-21 15:05:00", + "prochain_rdv": "2021-06-09 16:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 3, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -397,34 +453,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", @@ -455,24 +483,24 @@ }, { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0455-73 56 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "592", + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -509,34 +537,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From 915b34ef90ce48815c8c4e2504a815af22712f0b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:06:48 +0000 Subject: [PATCH 0665/1182] Updating the times for Region 20 --- 20.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/20.json b/20.json index cde62c818fe..20f1fdba596 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 15:19:31.036287+02:00", + "last_updated": "2021-06-09 16:06:48.181720+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 14:48:00", + "prochain_rdv": "2021-07-06 11:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2657, + "appointment_count": 2656, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Mora", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Mora", - "cp": "00000" - }, - "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-07-07 17:12:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2113", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -74,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 11:15:00", + "prochain_rdv": "2021-06-30 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 199, + "appointment_count": 197, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 15:20:00", + "prochain_rdv": "2021-07-01 11:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 20, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -228,6 +200,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "20", + "nom": "Doktor.se / Mora", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Mora", + "cp": "00000" + }, + "metadata": { + "address": "Mora Parken restaurang och konferens, Parkvägen", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2113", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From d0cec851118a9bd73aaf64924495006d621e79f8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:07:21 +0000 Subject: [PATCH 0666/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 1ad8ffd8ecb..c93f67cf922 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 15:20:04.457728+02:00", + "last_updated": "2021-06-09 16:07:21.159745+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f3859080e9a6a4af6fdd884525b10908cfda56ce Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:08:00 +0000 Subject: [PATCH 0667/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 6754739dc56..ba57fd6de40 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 15:20:33.752453+02:00", + "last_updated": "2021-06-09 16:07:59.491542+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 95ae6b577b67825c5c5a07affc225216d539480b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:08:53 +0000 Subject: [PATCH 0668/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 8c5f13107a9..6223681a23c 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 15:21:03.120507+02:00", + "last_updated": "2021-06-09 16:08:52.667623+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3914b47060565a3875eb4c6ed4b104abf3123833 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:09:32 +0000 Subject: [PATCH 0669/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 4371436b205..89eb46bad24 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 15:21:31.252555+02:00", + "last_updated": "2021-06-09 16:09:32.220288+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 60ef81989aaacbd865ffb309b95e5e3df20628b2 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 14:27:37 +0000 Subject: [PATCH 0670/1182] Updating the stats --- data/output/stats.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index a84dc6577d8..3d7d02e7063 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 15, "total": 19, - "creneaux": 437 + "creneaux": 440 }, "20": { - "disponibles": 5, + "disponibles": 4, "total": 8, - "creneaux": 2922 + "creneaux": 2914 }, "09": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 101, + "disponibles": 102, "total": 339, - "creneaux": 44442 + "creneaux": 44437 } } \ No newline at end of file From b67424fffa48259a49e14b86200c138e2e18c4b3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:28:03 +0000 Subject: [PATCH 0671/1182] Updating the times for Region 10 --- 10.json | 156 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/10.json b/10.json index 51253adbd34..a2444da821d 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:05:32.588592+02:00", + "last_updated": "2021-06-09 16:28:02.708834+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-15 11:20:00", + "prochain_rdv": "2021-06-10 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 25, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 13:25:00", + "prochain_rdv": "2021-06-16 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,6 +87,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Jämjö vårdcentral, Jämjö", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Hammarbyvägen 6", + "business_hours": null, + "phone_number": "0455-73 56 00" + }, + "prochain_rdv": "2021-06-23 13:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "575", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 14:20:00", + "prochain_rdv": "2021-06-22 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 29, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 40, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:20:00", + "prochain_rdv": "2021-06-24 15:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-24 13:50:00", + "prochain_rdv": "2021-06-17 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +301,7 @@ "prochain_rdv": "2021-06-11 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 54, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -313,24 +341,24 @@ }, { "departement": "10", - "nom": "Samariten vårdcentral, Karlshamn", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.851766499969292, - "latitude": 56.1871016915944, - "city": "Karlshamn", - "cp": "37480" + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" }, "metadata": { - "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0454-73 34 02" + "phone_number": "0455-73 56 55" }, - "prochain_rdv": "2021-06-19 11:35:00", + "prochain_rdv": "2021-06-23 13:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, - "internal_id": "577", + "appointment_count": 2, + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -341,24 +369,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Samariten vårdcentral, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" + "longitude": 14.851766499969292, + "latitude": 56.1871016915944, + "city": "Karlshamn", + "cp": "37480" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-23 15:25:00", + "prochain_rdv": "2021-06-19 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "586", + "appointment_count": 79, + "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -382,10 +410,10 @@ "business_hours": null, "phone_number": "0456-329 60" }, - "prochain_rdv": "2021-06-10 18:15:00", + "prochain_rdv": "2021-06-10 18:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +438,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-09 16:15:00", + "prochain_rdv": "2021-06-21 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -455,24 +483,24 @@ }, { "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", + "nom": "Sölvesborgs vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, - "city": "Karlskrona", + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Hammarbyvägen 6", + "address": "Markgatan 30", "business_hours": null, - "phone_number": "0455-73 56 00" + "phone_number": "0456-73 13 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "575", + "internal_id": "576", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -483,52 +511,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Trossö vårdcentral, Karlskrona", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "10", - "nom": "Sölvesborgs vårdcentral", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Markgatan 30", + "address": "Fortifikationsgatan 9, Karlskrona", "business_hours": null, - "phone_number": "0456-73 13 10" + "phone_number": "0455-73 57 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "576", + "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From da39825e4689551f3d4046e3d64da81a274e810d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:28:55 +0000 Subject: [PATCH 0672/1182] Updating the times for Region 20 --- 20.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/20.json b/20.json index 20f1fdba596..02318e33e25 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:06:48.181720+02:00", + "last_updated": "2021-06-09 16:28:55.175921+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-06 11:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2656, + "appointment_count": 2657, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:15:00", + "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 197, + "appointment_count": 196, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 11:25:00", + "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 18, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 246a7efce5363c9e164572a84092eb4ac7ef85a2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:29:40 +0000 Subject: [PATCH 0673/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index c93f67cf922..23f094e5dde 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:07:21.159745+02:00", + "last_updated": "2021-06-09 16:29:40.076842+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 48ed5ff230b376e86a71e7dc19a7ba6c86e98814 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:30:16 +0000 Subject: [PATCH 0674/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index ba57fd6de40..ad1b2855e81 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:07:59.491542+02:00", + "last_updated": "2021-06-09 16:30:15.350628+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f2624a98daec60067d18dd1f63da92c759cbe2f9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:30:48 +0000 Subject: [PATCH 0675/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 6223681a23c..09f63684dc4 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:08:52.667623+02:00", + "last_updated": "2021-06-09 16:30:48.045295+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ee9b03e3855d3ff99c99e809b57f71d04615a134 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:31:20 +0000 Subject: [PATCH 0676/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 89eb46bad24..938952fc5d4 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:09:32.220288+02:00", + "last_updated": "2021-06-09 16:31:20.197710+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 44f4e7999520609a42332f4de3c832fb83812b89 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:34:55 +0000 Subject: [PATCH 0677/1182] Updating the times for Region 06 --- 06.json | 266 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 133 insertions(+), 133 deletions(-) diff --git a/06.json b/06.json index 9937c5068c7..42d3692ffd6 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:31:18.791645+02:00", + "last_updated": "2021-06-09 16:34:54.332882+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 17:15:00", + "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 176, + "appointment_count": 168, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-16 15:12:00", + "prochain_rdv": "2021-06-16 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 342, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -117,24 +117,24 @@ }, { "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-242 35 20" + "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-17 11:27:00", + "prochain_rdv": "2021-06-16 14:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 441, - "internal_id": "1198", + "appointment_count": 274, + "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +145,52 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-23 13:25:00", + "prochain_rdv": "2021-06-18 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 6, - "internal_id": "1190", + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "business_hours": null, + "phone_number": "010-242 35 20" + }, + "prochain_rdv": "2021-06-23 13:03:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 549, + "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-07-01 10:00:00", + "prochain_rdv": "2021-07-01 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 11, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 10:24:00", + "prochain_rdv": "2021-06-18 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1708, + "appointment_count": 1704, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,7 +270,7 @@ "business_hours": null, "phone_number": "010-242 44 00" }, - "prochain_rdv": "2021-06-17 13:33:00", + "prochain_rdv": "2021-06-10 16:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2, @@ -255,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Råslätt vårdcentral, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.15085169944695, + "latitude": 57.739040222436465, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Tornfalksgatan 11, Jönköping", + "business_hours": null, + "phone_number": "010-242 37 00" + }, + "prochain_rdv": "2021-06-22 13:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 162, + "internal_id": "1201", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", @@ -270,10 +326,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 13:45:00", + "prochain_rdv": "2021-06-22 19:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 115, + "appointment_count": 72, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-18 13:28:00", + "prochain_rdv": "2021-06-22 14:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 288, + "appointment_count": 285, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:42:00", + "prochain_rdv": "2021-06-30 13:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 24, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -339,34 +395,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": "2021-06-22 11:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -382,10 +410,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-24 08:52:00", + "prochain_rdv": "2021-06-16 15:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1524, + "appointment_count": 1506, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +438,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 10:20:00", + "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 30, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +466,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-17 08:50:00", + "prochain_rdv": "2021-06-15 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 112, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,10 +494,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 14:04:00", + "prochain_rdv": "2021-06-24 14:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 69, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -707,52 +735,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 54 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1186", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1187", + "internal_id": "1507", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,7 +763,7 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.912555900408043, @@ -780,7 +780,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1507", + "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -957,34 +957,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Råslätt vårdcentral, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.15085169944695, - "latitude": 57.739040222436465, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Tornfalksgatan 11, Jönköping", - "business_hours": null, - "phone_number": "010-242 37 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1201", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Smålandsstenar vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1209,6 +1181,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From d869ae6f6f0246539a4e87f97f9dd405c19b3ac2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:38:29 +0000 Subject: [PATCH 0678/1182] Updating the times for Region 08 --- 08.json | 258 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 129 insertions(+), 129 deletions(-) diff --git a/08.json b/08.json index b32db7135ab..9789446fd75 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:34:56.019422+02:00", + "last_updated": "2021-06-09 16:38:29.390084+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 165, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,62 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Cityläkarna i Nybro", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.91011942888134, - "latitude": 56.74309528394747, - "city": "Nybro", - "cp": "00000" - }, - "metadata": { - "address": "Stora Nygatan 15, Nybro", - "business_hours": null, - "phone_number": "0481-49 07 00" - }, - "prochain_rdv": "2021-06-17 11:20:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 33, - "internal_id": "525", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "08", - "nom": "Emmaboda hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.536922734414482, - "latitude": 56.63139260693963, - "city": "Emmaboda", - "cp": "00000" - }, - "metadata": { - "address": "Rådhusgatan 12, Emmaboda", - "business_hours": null, - "phone_number": "0471-185 14" - }, - "prochain_rdv": "2021-06-17 10:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 46, - "internal_id": "506", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Hultsfreds hälsocentral", @@ -102,10 +46,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 17:55:00", + "prochain_rdv": "2021-06-15 18:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 76, + "appointment_count": 53, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +74,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 10:15:00", + "prochain_rdv": "2021-06-16 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 37, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Mönsterås hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.436708819482035, - "latitude": 57.035449569659825, - "city": "Mönsterås", - "cp": "00000" - }, - "metadata": { - "address": "Allégatan 1, Mönsterås", - "business_hours": null, - "phone_number": "0499-489 30" - }, - "prochain_rdv": "2021-06-16 13:35:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 7, - "internal_id": "492", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Mörbylånga hälsocentral", @@ -189,7 +105,7 @@ "prochain_rdv": "2021-06-16 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 213, + "appointment_count": 188, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Nybro hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.91133031488841, - "latitude": 56.74365104347946, - "city": "Nybro", - "cp": "00000" - }, - "metadata": { - "address": "Tunnelgatan 6, Nybro", - "business_hours": null, - "phone_number": "0481-447 60" - }, - "prochain_rdv": "2021-06-16 11:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "499", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Torsås hälsocentral", @@ -242,10 +130,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-17 09:20:00", + "prochain_rdv": "2021-06-17 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 213, + "appointment_count": 179, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-17 08:28:00", + "prochain_rdv": "2021-06-17 08:38:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1421, + "appointment_count": 1354, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:24:00", + "prochain_rdv": "2021-06-15 15:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1104, + "appointment_count": 1000, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:51:00", + "prochain_rdv": "2021-06-15 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 991, + "appointment_count": 941, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +242,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:45:00", + "prochain_rdv": "2021-06-17 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 266, + "appointment_count": 227, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, @@ -509,6 +397,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Cityläkarna i Nybro", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.91011942888134, + "latitude": 56.74309528394747, + "city": "Nybro", + "cp": "00000" + }, + "metadata": { + "address": "Stora Nygatan 15, Nybro", + "business_hours": null, + "phone_number": "0481-49 07 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "525", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Cityläkarna i Oskarshamn", @@ -537,6 +453,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Emmaboda hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.536922734414482, + "latitude": 56.63139260693963, + "city": "Emmaboda", + "cp": "00000" + }, + "metadata": { + "address": "Rådhusgatan 12, Emmaboda", + "business_hours": null, + "phone_number": "0471-185 14" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "506", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Gamleby hälsocentral", @@ -733,6 +677,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Mönsterås hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.436708819482035, + "latitude": 57.035449569659825, + "city": "Mönsterås", + "cp": "00000" + }, + "metadata": { + "address": "Allégatan 1, Mönsterås", + "business_hours": null, + "phone_number": "0499-489 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "492", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Mörlunda hälsocentral", @@ -761,6 +733,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Nybro hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.91133031488841, + "latitude": 56.74365104347946, + "city": "Nybro", + "cp": "00000" + }, + "metadata": { + "address": "Tunnelgatan 6, Nybro", + "business_hours": null, + "phone_number": "0481-447 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "499", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Smedby hälsocentral", From c8188558a2f2799f0e0572b565d0b3058b242f4f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:39:21 +0000 Subject: [PATCH 0679/1182] Updating the times for Region 07 --- 07.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/07.json b/07.json index f02237d6137..e4b3119848b 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:35:45.874849+02:00", + "last_updated": "2021-06-09 16:39:20.977340+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:05:00", + "prochain_rdv": "2021-06-12 09:20:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 177, + "appointment_count": 166, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 09:30:00", + "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 93, + "appointment_count": 80, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:15:00", + "prochain_rdv": "2021-06-10 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 238, + "appointment_count": 206, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 11:00:00", + "prochain_rdv": "2021-06-22 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 1, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 09:10:00", + "prochain_rdv": "2021-06-15 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 56, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:10:00", + "prochain_rdv": "2021-06-10 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 50, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-09 15:52:00", + "prochain_rdv": "2021-06-16 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4228, + "appointment_count": 4088, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 23fc8b27a2a813ee2f573d6fc67232038984b429 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:39:56 +0000 Subject: [PATCH 0680/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 209798f0f97..d4614e41dc9 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:36:15.192991+02:00", + "last_updated": "2021-06-09 16:39:55.377368+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 84715181d6264223eff8d92ce0ae747931cf50da Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:40:25 +0000 Subject: [PATCH 0681/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 6180e65fe7c..50f48055a94 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:36:43.263033+02:00", + "last_updated": "2021-06-09 16:40:25.024794+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8df82ff5500113ce1ded7bfaf31e4788dcec84a0 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 14:56:50 +0000 Subject: [PATCH 0682/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 3d7d02e7063..7bfee0e13ed 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 15, + "disponibles": 16, "total": 19, - "creneaux": 440 + "creneaux": 442 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2914 + "creneaux": 2912 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 17, + "disponibles": 18, "total": 52, - "creneaux": 4649 + "creneaux": 5435 }, "08": { - "disponibles": 13, + "disponibles": 9, "total": 30, - "creneaux": 4499 + "creneaux": 4144 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4851 + "creneaux": 4647 }, "25": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 102, + "disponibles": 100, "total": 339, - "creneaux": 44437 + "creneaux": 44664 } } \ No newline at end of file From 38b86f67bf8570861a7695af0867857ba62e7649 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:57:22 +0000 Subject: [PATCH 0683/1182] Updating the times for Region 10 --- 10.json | 102 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/10.json b/10.json index a2444da821d..9da6a7722b1 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:28:02.708834+02:00", + "last_updated": "2021-06-09 16:57:21.622261+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 115, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-16 15:00:00", + "prochain_rdv": "2021-06-24 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:15:00", + "prochain_rdv": "2021-06-10 14:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 30, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 37, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-24 15:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +199,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": "2021-06-15 10:35:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 16:10:00", + "prochain_rdv": "2021-06-22 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 49, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +245,7 @@ "prochain_rdv": "2021-06-17 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 4, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-11 09:10:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 45, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 10:00:00", + "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 29, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0455-73 56 55" }, - "prochain_rdv": "2021-06-23 13:55:00", + "prochain_rdv": "2021-06-23 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 11:30:00", + "prochain_rdv": "2021-06-19 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 79, + "appointment_count": 77, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +382,10 @@ "business_hours": null, "phone_number": "0456-329 60" }, - "prochain_rdv": "2021-06-10 18:10:00", + "prochain_rdv": "2021-06-10 17:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "597", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +410,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-21 15:05:00", + "prochain_rdv": "2021-06-21 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -481,6 +453,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From 9942764409535e9afb1f72d8a732d4c6de120656 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:58:13 +0000 Subject: [PATCH 0684/1182] Updating the times for Region 20 --- 20.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/20.json b/20.json index 02318e33e25..88be45dafea 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:28:55.175921+02:00", + "last_updated": "2021-06-09 16:58:12.890628+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-06 11:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2657, + "appointment_count": 2654, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Falun", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Falun", + "cp": "00000" + }, + "metadata": { + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-07-09 13:28:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2111", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:20:00", + "prochain_rdv": "2021-06-30 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 196, + "appointment_count": 197, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 41, + "appointment_count": 40, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,34 +173,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Falun", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Falun", - "cp": "00000" - }, - "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2111", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Doktor.se / Ludvika", From 78588838d6e19291c8ad7066c9dc784cd50ca068 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:58:52 +0000 Subject: [PATCH 0685/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 23f094e5dde..b0d551a47e8 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:29:40.076842+02:00", + "last_updated": "2021-06-09 16:58:51.749846+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5d5817f7c6d68198df4a57ad3ca536f253c8d3e3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:59:25 +0000 Subject: [PATCH 0686/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index ad1b2855e81..d32d069a023 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:30:15.350628+02:00", + "last_updated": "2021-06-09 16:59:24.888804+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ed359eb8b6978008873659f79f33ce6214a7be8d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 14:59:59 +0000 Subject: [PATCH 0687/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 09f63684dc4..2f7e00c7cbd 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:30:48.045295+02:00", + "last_updated": "2021-06-09 16:59:58.662992+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7d93634add8e9d87a3e4379034f23da0aeadd3d3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:00:46 +0000 Subject: [PATCH 0688/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 938952fc5d4..81824b93278 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:31:20.197710+02:00", + "last_updated": "2021-06-09 17:00:45.583013+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 74240799a4dc6b734eb1a40434fc80fcd0b6578f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:04:09 +0000 Subject: [PATCH 0689/1182] Updating the times for Region 06 --- 06.json | 204 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 102 insertions(+), 102 deletions(-) diff --git a/06.json b/06.json index 42d3692ffd6..89b813394a8 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:34:54.332882+02:00", + "last_updated": "2021-06-09 17:04:09.138565+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 73, + "appointment_count": 72, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 342, + "appointment_count": 348, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-16 14:21:00", + "prochain_rdv": "2021-06-16 14:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 274, + "appointment_count": 246, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-18 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 10, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 13:03:00", + "prochain_rdv": "2021-06-23 11:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 549, + "appointment_count": 561, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,6 +199,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Valåkravägen 1, Landsbro", + "business_hours": null, + "phone_number": "010-243 25 10" + }, + "prochain_rdv": "2021-06-30 08:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 6, + "internal_id": "1190", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Mullsjö vårdcentral", @@ -227,6 +255,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": "2021-06-17 11:15:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -242,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-18 11:00:00", + "prochain_rdv": "2021-06-10 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1704, + "appointment_count": 1696, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +326,10 @@ "business_hours": null, "phone_number": "010-242 44 00" }, - "prochain_rdv": "2021-06-10 16:51:00", + "prochain_rdv": "2021-06-22 11:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "1199", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +382,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-22 19:50:00", + "prochain_rdv": "2021-06-23 17:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 72, + "appointment_count": 63, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -395,6 +451,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": "2021-06-23 14:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -410,10 +494,10 @@ "business_hours": null, "phone_number": "010-243 39 00" }, - "prochain_rdv": "2021-06-16 15:54:00", + "prochain_rdv": "2021-06-24 08:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1506, + "appointment_count": 1500, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -469,7 +553,7 @@ "prochain_rdv": "2021-06-15 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 118, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -494,7 +578,7 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 14:16:00", + "prochain_rdv": "2021-06-17 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 69, @@ -761,34 +845,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Valåkravägen 1, Landsbro", - "business_hours": null, - "phone_number": "010-243 25 10" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1190", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", @@ -817,34 +873,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1181,34 +1209,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From 0651811c96b1ef347c389295d158551c9ae231f8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:07:59 +0000 Subject: [PATCH 0690/1182] Updating the times for Region 08 --- 08.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/08.json b/08.json index 9789446fd75..b604ca7ac16 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:38:29.390084+02:00", + "last_updated": "2021-06-09 17:07:58.743773+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 15:18:00", + "prochain_rdv": "2021-06-15 15:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1000, + "appointment_count": 984, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-15 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 941, + "appointment_count": 932, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 11:10:00", + "prochain_rdv": "2021-06-17 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 227, + "appointment_count": 225, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 98844bc15eb893028c7df6823ba80539361d6be1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:08:55 +0000 Subject: [PATCH 0691/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index e4b3119848b..da5f91f5cf5 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:39:20.977340+02:00", + "last_updated": "2021-06-09 17:08:55.113516+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:20:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 166, + "appointment_count": 165, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 80, + "appointment_count": 77, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 206, + "appointment_count": 199, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-10 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 48, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 11:20:00", + "prochain_rdv": "2021-06-10 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4088, + "appointment_count": 4095, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From b5483f3eb37afaf4737730e0a039f5a3fd947e28 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:09:35 +0000 Subject: [PATCH 0692/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index d4614e41dc9..ca9f7a828e7 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:39:55.377368+02:00", + "last_updated": "2021-06-09 17:09:34.748414+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From ec8905097b7c8815def0ed354fdb1297d9853914 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:10:08 +0000 Subject: [PATCH 0693/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 50f48055a94..37c68979d98 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:40:25.024794+02:00", + "last_updated": "2021-06-09 17:10:08.075865+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 0aa3793d669396f08a8bdeadfb1dda3bab8ada22 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:13:00 +0000 Subject: [PATCH 0694/1182] Updating the times for Region 04 --- 04.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/04.json b/04.json index ce329751c1e..33c022ed23c 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-09 12:37:55.513671+02:00", + "last_updated": "2021-06-09 17:12:59.461955+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-13 09:30:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Gnesta, Gnesta", @@ -18,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 09:55:00", + "prochain_rdv": "2021-06-10 11:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 7, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 15:35:00", + "prochain_rdv": "2021-06-22 15:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 12, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-19 11:12:00", + "prochain_rdv": "2021-06-10 12:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 468, + "appointment_count": 450, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +133,7 @@ "prochain_rdv": "2021-06-17 13:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2702, + "appointment_count": 2686, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Flen, Flen", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" - }, - "metadata": { - "address": "Götgatan 6, 642 37 Flen", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30005, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From d89ebf3b56737d1bac6873363a6d21d8d51ec0d6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:13:29 +0000 Subject: [PATCH 0695/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 91fcafb9fd3..1f72357520a 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:38:22.927194+02:00", + "last_updated": "2021-06-09 17:13:28.675349+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 06fa9f57614439f2bbb31ada49834e952b0b12bb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:14:02 +0000 Subject: [PATCH 0696/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index ae2c076afce..8636909843a 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:38:51.717449+02:00", + "last_updated": "2021-06-09 17:14:01.423361+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9757a7ed6e8202621a61501f0ca7358c3832b83d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:14:37 +0000 Subject: [PATCH 0697/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 831380d8812..48b1ff84a0d 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:39:22.159116+02:00", + "last_updated": "2021-06-09 17:14:37.391491+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d71ca703682d42c1ce3224dca0129bce569e9ed7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:19:32 +0000 Subject: [PATCH 0698/1182] Updating the times for Region 22 --- 22.json | 164 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 82 insertions(+), 82 deletions(-) diff --git a/22.json b/22.json index f83a993740c..99db485c5e1 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:43:32.515994+02:00", + "last_updated": "2021-06-09 17:19:31.363652+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 10:27:00", + "prochain_rdv": "2021-06-18 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 52, + "appointment_count": 877, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 11:39:00", + "prochain_rdv": "2021-06-28 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3616, + "appointment_count": 1795, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -61,24 +61,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Fränsta", + "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", + "longitude": 17.273690876743526, + "latitude": 63.16638706103348, + "city": "Sollefteå", "cp": "00000" }, "metadata": { - "address": "Mårtensvägen 2, Fränsta", + "address": "Hullsta gård, Storgatan 69", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 13:30:00", + "prochain_rdv": "2021-06-09 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", + "appointment_count": 381, + "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -86,27 +86,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "22", - "nom": "Vaccinationsenhet Husumgården", + "nom": "Vaccinationsenhet Fränsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 19.16616919246284, - "latitude": 63.335090194766195, - "city": "Örnsköldsvik", + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", "cp": "00000" }, "metadata": { - "address": "Blåsåsen 2, Husum", + "address": "Mårtensvägen 2, Fränsta", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-17 11:48:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 78, - "internal_id": "1327", + "appointment_count": 0, + "internal_id": "926", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -117,24 +119,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Härnösand", + "nom": "Vaccinationsenhet Församlingshemmet Björna", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.9298362078272, - "latitude": 62.62440429993568, - "city": "Härnösand", + "longitude": 18.599430359109586, + "latitude": 63.55227676376663, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Södra vägen 3-5", + "address": "Järnvägsgatan 6, Björna", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-21 09:50:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1820, - "internal_id": "1309", + "appointment_count": 0, + "internal_id": "1332", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +147,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Kramfors", + "nom": "Vaccinationsenhet Husumgården", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.771429954085686, - "latitude": 62.929766178980955, - "city": "Kramfors", + "longitude": 19.16616919246284, + "latitude": 63.335090194766195, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Folkets park, Parkgatan 14", + "address": "Blåsåsen 2, Husum", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 13:10:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1148, - "internal_id": "1323", + "appointment_count": 0, + "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +175,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Nacksta", + "nom": "Vaccinationsenhet Härnösand", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.255449827674113, - "latitude": 62.392978556952556, - "city": "Sundsvall", - "cp": "85350" + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", + "cp": "00000" }, "metadata": { - "address": "Axvägen 15, 853 50 Sundsvall", + "address": "Södra vägen 3-5", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-22 10:18:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1925, - "internal_id": "1291", + "appointment_count": 0, + "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +203,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", + "nom": "Vaccinationsenhet Junsele", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.273690876743526, - "latitude": 63.16638706103348, + "longitude": 16.88054364443083, + "latitude": 63.694607625020325, "city": "Sollefteå", "cp": "00000" }, "metadata": { - "address": "Hullsta gård, Storgatan 69", + "address": "Forumvägen 4, Junsele", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-17 09:40:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1147, - "internal_id": "1325", + "appointment_count": 0, + "internal_id": "910", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -226,21 +228,19 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "22", - "nom": "Vaccinationsenhet Församlingshemmet Björna", + "nom": "Vaccinationsenhet Kramfors", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 18.599430359109586, - "latitude": 63.55227676376663, - "city": "Örnsköldsvik", + "longitude": 17.771429954085686, + "latitude": 62.929766178980955, + "city": "Kramfors", "cp": "00000" }, "metadata": { - "address": "Järnvägsgatan 6, Björna", + "address": "Folkets park, Parkgatan 14", "business_hours": null, "phone_number": "0611-804 00" }, @@ -248,7 +248,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1332", + "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -259,16 +259,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Junsele", + "nom": "Vaccinationsenhet Liden", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.88054364443083, - "latitude": 63.694607625020325, - "city": "Sollefteå", - "cp": "00000" + "longitude": 16.803012828751818, + "latitude": 62.7004084040178, + "city": "Sundsvall", + "cp": "85599" }, "metadata": { - "address": "Forumvägen 4, Junsele", + "address": "Husåsvägen 18, 855 99 Liden", "business_hours": null, "phone_number": "0611-804 00" }, @@ -276,7 +276,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "910", + "internal_id": "916", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -287,16 +287,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Liden", + "nom": "Vaccinationsenhet Matfors", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.803012828751818, - "latitude": 62.7004084040178, + "longitude": 17.014423130377182, + "latitude": 62.348525018856556, "city": "Sundsvall", - "cp": "85599" + "cp": "00000" }, "metadata": { - "address": "Husåsvägen 18, 855 99 Liden", + "address": "Skölevägen 19", "business_hours": null, "phone_number": "0611-804 00" }, @@ -304,7 +304,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "916", + "internal_id": "914", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -315,16 +315,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Matfors", + "nom": "Vaccinationsenhet Nacksta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.014423130377182, - "latitude": 62.348525018856556, + "longitude": 17.255449827674113, + "latitude": 62.392978556952556, "city": "Sundsvall", - "cp": "00000" + "cp": "85350" }, "metadata": { - "address": "Skölevägen 19", + "address": "Axvägen 15, 853 50 Sundsvall", "business_hours": null, "phone_number": "0611-804 00" }, @@ -332,7 +332,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "914", + "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 471477a58d6c7ffb5f1dd7aad794677ce97dd9dd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:20:03 +0000 Subject: [PATCH 0699/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 236920a6011..cfb8ce0f86b 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 12:44:01.696459+02:00", + "last_updated": "2021-06-09 17:20:01.799462+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7944337acc8c5357e6d523dc9b6912f5fd1e215a Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 15:29:47 +0000 Subject: [PATCH 0700/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 7bfee0e13ed..58bcf8b3052 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 16, + "disponibles": 15, "total": 19, - "creneaux": 442 + "creneaux": 429 }, "20": { - "disponibles": 4, + "disponibles": 5, "total": 8, - "creneaux": 2912 + "creneaux": 2910 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 18, + "disponibles": 21, "total": 52, - "creneaux": 5435 + "creneaux": 5420 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 4144 + "creneaux": 4117 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4647 + "creneaux": 4641 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 3207 + "creneaux": 3159 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 8, + "disponibles": 3, "total": 19, - "creneaux": 9800 + "creneaux": 3053 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 100, + "disponibles": 99, "total": 339, - "creneaux": 44664 + "creneaux": 37806 } } \ No newline at end of file From 21dcd0f422acead4f602f2d719209a67aa1b511b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:30:14 +0000 Subject: [PATCH 0701/1182] Updating the times for Region 10 --- 10.json | 144 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/10.json b/10.json index 9da6a7722b1..80f8fe74f48 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:57:21.622261+02:00", + "last_updated": "2021-06-09 17:30:13.570604+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-24 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 56 00" }, - "prochain_rdv": "2021-06-23 13:25:00", + "prochain_rdv": "2021-06-16 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 14:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 32, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,6 +199,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": "2021-06-15 10:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -214,10 +242,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 11:30:00", + "prochain_rdv": "2021-06-16 16:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 50, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +273,7 @@ "prochain_rdv": "2021-06-17 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 2, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-11 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 47, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +329,7 @@ "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 30, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +382,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 11:35:00", + "prochain_rdv": "2021-06-19 11:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 77, + "appointment_count": 75, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,6 +395,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": "2021-06-16 10:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Valjehälsan, Sölvesborg", @@ -382,7 +438,7 @@ "business_hours": null, "phone_number": "0456-329 60" }, - "prochain_rdv": "2021-06-10 17:10:00", + "prochain_rdv": "2021-06-10 18:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -413,7 +469,7 @@ "prochain_rdv": "2021-06-21 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 4, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -453,34 +509,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", @@ -509,34 +537,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From 6989762edf4efa72b8c2fccbf414c2ee5e892e7e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:31:07 +0000 Subject: [PATCH 0702/1182] Updating the times for Region 20 --- 20.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/20.json b/20.json index 88be45dafea..8b0254ee426 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:58:12.890628+02:00", + "last_updated": "2021-06-09 17:31:06.762875+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-06 11:44:00", + "prochain_rdv": "2021-07-08 09:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2654, + "appointment_count": 2653, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-09 13:28:00", + "prochain_rdv": "2021-06-16 12:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, From 59d5bbc8381a14ed8ded86087391e48cfc32dc9e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:31:40 +0000 Subject: [PATCH 0703/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index b0d551a47e8..5a260106e8f 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:58:51.749846+02:00", + "last_updated": "2021-06-09 17:31:40.046150+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c6a8ce0ede3d9c2862580105475675ab0264e4b5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:32:10 +0000 Subject: [PATCH 0704/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index d32d069a023..ec3597aee15 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:59:24.888804+02:00", + "last_updated": "2021-06-09 17:32:09.502459+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4df8626fdd3356ddbe4ed64c569455ca4ea7c5c5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:32:45 +0000 Subject: [PATCH 0705/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 2f7e00c7cbd..a21e037d52b 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 16:59:58.662992+02:00", + "last_updated": "2021-06-09 17:32:44.396373+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a048ab7b161aa5499cbe601ae705ded10ba0d419 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:33:12 +0000 Subject: [PATCH 0706/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 81824b93278..2ed9c782adb 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:00:45.583013+02:00", + "last_updated": "2021-06-09 17:33:12.243806+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7092f68be94f1f10ea785fc0b761ced72941c7fe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:37:48 +0000 Subject: [PATCH 0707/1182] Updating the times for Region 06 --- 06.json | 212 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 106 insertions(+), 106 deletions(-) diff --git a/06.json b/06.json index 89b813394a8..af6b9b8195c 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:04:09.138565+02:00", + "last_updated": "2021-06-09 17:37:47.986497+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 72, + "appointment_count": 71, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:36:00", + "prochain_rdv": "2021-06-24 09:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 46, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-16 15:48:00", + "prochain_rdv": "2021-06-16 15:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 348, + "appointment_count": 342, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-16 14:18:00", + "prochain_rdv": "2021-06-16 14:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 246, + "appointment_count": 250, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,34 +143,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": "2021-06-18 09:36:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 10, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -189,7 +161,7 @@ "prochain_rdv": "2021-06-23 11:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 561, + "appointment_count": 558, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,7 +242,7 @@ "business_hours": null, "phone_number": "010-242 39 00" }, - "prochain_rdv": "2021-06-17 11:15:00", + "prochain_rdv": "2021-06-30 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 3, @@ -298,7 +270,7 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-10 13:48:00", + "prochain_rdv": "2021-06-19 11:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1696, @@ -311,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": "2021-06-22 11:48:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Råslätt vårdcentral, Jönköping (åldersgrupp eller riksgrupp)", @@ -413,7 +357,7 @@ "prochain_rdv": "2021-06-22 14:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 285, + "appointment_count": 276, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -453,24 +397,24 @@ }, { "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Vetlanda vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Kortebovägen 6, Jönköping", + "address": "Norrvägen 2 B, Vetlanda", "business_hours": null, - "phone_number": "010-242 89 00" + "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-23 14:35:00", + "prochain_rdv": "2021-07-07 08:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1224", + "appointment_count": 288, + "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -525,7 +469,7 @@ "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 28, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -553,7 +497,7 @@ "prochain_rdv": "2021-06-15 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 118, + "appointment_count": 116, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -578,7 +522,7 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-17 13:20:00", + "prochain_rdv": "2021-06-24 14:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 69, @@ -817,6 +761,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -901,6 +873,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1043,24 +1043,24 @@ }, { "departement": "06", - "nom": "Bra Liv Vetlanda vårdcentral", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 15.081352462610193, - "latitude": 57.432375422981, - "city": "Vetlanda", + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", "cp": "00000" }, "metadata": { - "address": "Norrvägen 2 B, Vetlanda", + "address": "Vråenvägen 31, Värnamo", "business_hours": null, - "phone_number": "010-243 20 10" + "phone_number": "010-244 30 15" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2050", + "internal_id": "1218", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1071,7 +1071,7 @@ }, { "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.06769175799465, @@ -1088,7 +1088,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1218", + "internal_id": "1210", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1099,24 +1099,24 @@ }, { "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", + "longitude": 14.4775813245743, + "latitude": 57.70282981263284, + "city": "Nässjö", "cp": "00000" }, "metadata": { - "address": "Vråenvägen 31, Värnamo", + "address": "Lillsjövägen 12, Forserum", "business_hours": null, - "phone_number": "010-244 30 15" + "phone_number": "010-243 39 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1210", + "internal_id": "1511", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1127,7 +1127,7 @@ }, { "departement": "06", - "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", + "nom": "Bräcke Diakoni Nyhälsan Forserum filial (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.4775813245743, @@ -1144,7 +1144,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1511", + "internal_id": "1294", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1155,24 +1155,24 @@ }, { "departement": "06", - "nom": "Bräcke Diakoni Nyhälsan Forserum filial (åldersgrupp eller riksgrupp)", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.4775813245743, - "latitude": 57.70282981263284, - "city": "Nässjö", + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Lillsjövägen 12, Forserum", + "address": "Kortebovägen 6, Jönköping", "business_hours": null, - "phone_number": "010-243 39 00" + "phone_number": "010-242 89 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1294", + "internal_id": "1509", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1183,7 +1183,7 @@ }, { "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (18+ LSS/assistans/vårdnära)", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.150961812634723, @@ -1200,7 +1200,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1509", + "internal_id": "1224", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 4786ecac7d54648d906e707d8f2c6c0f6a5c31ea Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:42:32 +0000 Subject: [PATCH 0708/1182] Updating the times for Region 08 --- 08.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/08.json b/08.json index b604ca7ac16..72b7b99e10c 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:07:58.743773+02:00", + "last_updated": "2021-06-09 17:42:31.446512+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 147, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-17 08:38:00", + "prochain_rdv": "2021-06-17 08:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1354, + "appointment_count": 1362, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-15 15:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 984, + "appointment_count": 960, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-15 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 932, + "appointment_count": 941, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-17 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 225, + "appointment_count": 216, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 22f54a80cd14afb4bc49d2400488a9aae9c35fbf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:43:21 +0000 Subject: [PATCH 0709/1182] Updating the times for Region 07 --- 07.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/07.json b/07.json index da5f91f5cf5..be64cc50457 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:08:55.113516+02:00", + "last_updated": "2021-06-09 17:43:21.402197+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:20:00", + "prochain_rdv": "2021-06-12 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 158, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 77, + "appointment_count": 76, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 199, + "appointment_count": 195, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 13:10:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 46, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 15:20:00", + "prochain_rdv": "2021-06-10 09:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4095, + "appointment_count": 4074, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 30793243b4f428ea0b3a88977502ee23c8f62a7b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:43:53 +0000 Subject: [PATCH 0710/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index ca9f7a828e7..8cee3c26429 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:09:34.748414+02:00", + "last_updated": "2021-06-09 17:43:52.468292+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 9cbaa9b71c7b0936740f0038c59f03a016c2729a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:44:21 +0000 Subject: [PATCH 0711/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 37c68979d98..c040f5e32f0 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:10:08.075865+02:00", + "last_updated": "2021-06-09 17:44:20.904240+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7553db1a1f04da6aba4348bdcc12186f5a480bcf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:45:40 +0000 Subject: [PATCH 0712/1182] Updating the times for Region 04 --- 04.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/04.json b/04.json index 33c022ed23c..065f655371d 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:12:59.461955+02:00", + "last_updated": "2021-06-09 17:45:39.537799+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 11:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-10 12:03:00", + "prochain_rdv": "2021-06-16 19:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 450, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 13:44:00", + "prochain_rdv": "2021-06-17 13:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2686, From f07d702602e418c94717af4a26187aea719f6771 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:46:12 +0000 Subject: [PATCH 0713/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 1f72357520a..1be234df200 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:13:28.675349+02:00", + "last_updated": "2021-06-09 17:46:11.989085+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9a3c5be0544e96929c0cd88e32444363895f5e04 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:46:40 +0000 Subject: [PATCH 0714/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 8636909843a..341f5a47dd4 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:14:01.423361+02:00", + "last_updated": "2021-06-09 17:46:39.898495+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3a8e54f1776a62d76e01637b7d80741a819255cb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:47:16 +0000 Subject: [PATCH 0715/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 48b1ff84a0d..32bfab36f15 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:14:37.391491+02:00", + "last_updated": "2021-06-09 17:47:15.393673+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7e8e511b4ecfe10b7c11c6a1e0ef8c7b0cb48276 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:52:11 +0000 Subject: [PATCH 0716/1182] Updating the times for Region 22 --- 22.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/22.json b/22.json index 99db485c5e1..922d0edb021 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:19:31.363652+02:00", + "last_updated": "2021-06-09 17:52:10.916990+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-18 15:00:00", + "prochain_rdv": "2021-06-29 09:31:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 877, + "appointment_count": 864, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-28 10:36:00", + "prochain_rdv": "2021-06-30 09:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1795, + "appointment_count": 1624, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 17:20:00", + "prochain_rdv": "2021-06-09 18:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 381, + "appointment_count": 377, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From 8aafa4158056261bf1e8e3a1e72bfee2b9c7a11e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 15:52:45 +0000 Subject: [PATCH 0717/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index cfb8ce0f86b..999b81b20cb 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:20:01.799462+02:00", + "last_updated": "2021-06-09 17:52:44.719611+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8dbd98409a3845f850a3673a7121b80177b02c27 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 16:09:05 +0000 Subject: [PATCH 0718/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 58bcf8b3052..8ead58c05c6 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 15, + "disponibles": 17, "total": 19, - "creneaux": 429 + "creneaux": 435 }, "20": { "disponibles": 5, "total": 8, - "creneaux": 2910 + "creneaux": 2909 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 21, + "disponibles": 19, "total": 52, - "creneaux": 5420 + "creneaux": 5677 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 4117 + "creneaux": 4083 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4641 + "creneaux": 4606 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 5, "total": 6, - "creneaux": 3159 + "creneaux": 3158 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 3, "total": 19, - "creneaux": 3053 + "creneaux": 2865 }, "19": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 99, "total": 339, - "creneaux": 37806 + "creneaux": 37810 } } \ No newline at end of file From 4f75c136af76b095c396e07ccd6f020271e56982 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:09:46 +0000 Subject: [PATCH 0719/1182] Updating the times for Region 10 --- 10.json | 92 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/10.json b/10.json index 80f8fe74f48..ac9ae19729f 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:30:13.570604+02:00", + "last_updated": "2021-06-09 18:09:46.094385+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-10 10:40:00", + "prochain_rdv": "2021-06-15 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 23, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 14:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 115, + "appointment_count": 116, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 14:55:00", + "prochain_rdv": "2021-06-16 17:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 31, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:10:00", + "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 27, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-15 10:35:00", + "prochain_rdv": "2021-06-22 14:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-17 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0455-73 56 55" }, - "prochain_rdv": "2021-06-23 15:30:00", + "prochain_rdv": "2021-06-23 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 4, "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 11:40:00", + "prochain_rdv": "2021-06-19 12:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 75, + "appointment_count": 74, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,7 +410,7 @@ "business_hours": null, "phone_number": "0455-73 57 55" }, - "prochain_rdv": "2021-06-16 10:55:00", + "prochain_rdv": "2021-06-23 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -423,34 +423,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Valjehälsan, Sölvesborg", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.55505971137131, - "latitude": 56.04871111917787, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Herrgårdsvägen 97", - "business_hours": null, - "phone_number": "0456-329 60" - }, - "prochain_rdv": "2021-06-10 18:10:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "597", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -466,10 +438,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-21 15:00:00", + "prochain_rdv": "2021-06-21 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 3, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -564,6 +536,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Valjehälsan, Sölvesborg", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Herrgårdsvägen 97", + "business_hours": null, + "phone_number": "0456-329 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "597", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From c447d906e2c8f6f032a35b155a89deb8748832a4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:10:36 +0000 Subject: [PATCH 0720/1182] Updating the times for Region 20 --- 20.json | 82 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/20.json b/20.json index 8b0254ee426..ee7a3f541ff 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:31:06.762875+02:00", + "last_updated": "2021-06-09 18:10:35.445624+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:36:00", + "prochain_rdv": "2021-07-08 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2653, + "appointment_count": 2649, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,52 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 12:56:00", + "prochain_rdv": "2021-06-17 10:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, - "internal_id": "2111", + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Doktor.se / Mora", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Mora", + "cp": "00000" + }, + "metadata": { + "address": "Mora Parken restaurang och konferens, Parkvägen", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-07-02 12:12:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2113", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 17, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -175,44 +203,16 @@ }, { "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "20", - "nom": "Doktor.se / Mora", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Mora", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, @@ -220,7 +220,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2113", + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From ce1f1867f16169177c746cd91a195835edfa3910 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:11:04 +0000 Subject: [PATCH 0721/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 5a260106e8f..1dcaff56376 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:31:40.046150+02:00", + "last_updated": "2021-06-09 18:11:04.034656+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c7ba1234c6fcefc3078afbae98c3537974bb3f89 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:11:35 +0000 Subject: [PATCH 0722/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index ec3597aee15..199361e408f 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:32:09.502459+02:00", + "last_updated": "2021-06-09 18:11:35.056766+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From efebd35762448ee6f134d3c75b9f481549bfa045 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:12:05 +0000 Subject: [PATCH 0723/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index a21e037d52b..61565f7d580 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:32:44.396373+02:00", + "last_updated": "2021-06-09 18:12:04.882404+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 25ca48c457e4efccef0abbdf9c8d7a7bf13cfd89 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:12:36 +0000 Subject: [PATCH 0724/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 2ed9c782adb..5bd6788b57f 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:33:12.243806+02:00", + "last_updated": "2021-06-09 18:12:35.871293+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 014c35aed97d58473e8dd86eaa31bc13f00b50cc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:15:54 +0000 Subject: [PATCH 0725/1182] Updating the times for Region 06 --- 06.json | 244 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 122 insertions(+), 122 deletions(-) diff --git a/06.json b/06.json index af6b9b8195c..cb11375f0d8 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:37:47.986497+02:00", + "last_updated": "2021-06-09 18:15:54.205275+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 71, + "appointment_count": 69, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-16 15:36:00", + "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 342, + "appointment_count": 333, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,6 +115,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": "2021-06-24 10:57:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-16 14:21:00", + "prochain_rdv": "2021-06-16 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 250, + "appointment_count": 224, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +171,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": "2021-06-17 09:16:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 8, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -161,7 +217,7 @@ "prochain_rdv": "2021-06-23 11:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 558, + "appointment_count": 549, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": "2021-06-30 10:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-19 11:51:00", + "prochain_rdv": "2021-06-23 20:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1696, + "appointment_count": 1688, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:00:00", + "prochain_rdv": "2021-06-22 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 162, + "appointment_count": 158, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +354,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 17:40:00", + "prochain_rdv": "2021-06-23 17:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 54, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 14:12:00", + "prochain_rdv": "2021-06-22 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 276, + "appointment_count": 273, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +410,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:51:00", + "prochain_rdv": "2021-06-30 13:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 22, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +438,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-07-07 08:30:00", + "prochain_rdv": "2021-07-07 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 288, + "appointment_count": 272, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -423,6 +451,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": "2021-06-23 13:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -494,10 +550,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-15 13:10:00", + "prochain_rdv": "2021-06-15 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 116, + "appointment_count": 114, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -522,10 +578,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 14:16:00", + "prochain_rdv": "2021-06-17 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 63, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -735,24 +791,24 @@ }, { "departement": "06", - "nom": "Bra Liv Habo vårdcentral", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Kärrsvägen 37, Habo", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 48 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1184", + "internal_id": "1507", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,52 +819,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Postgatan 1, Norrahammar", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 39 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1507", + "internal_id": "1494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -819,7 +847,7 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.117167961555985, @@ -836,7 +864,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1494", + "internal_id": "1195", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -1181,34 +1209,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From e25d910081cc2afbb0473ba4d21eece48cf627dc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:19:52 +0000 Subject: [PATCH 0726/1182] Updating the times for Region 08 --- 08.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/08.json b/08.json index 72b7b99e10c..da1b83c89f6 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:42:31.446512+02:00", + "last_updated": "2021-06-09 18:19:51.868013+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 147, + "appointment_count": 131, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-17 09:25:00", + "prochain_rdv": "2021-06-17 09:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 179, + "appointment_count": 172, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-17 08:36:00", + "prochain_rdv": "2021-06-17 08:38:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1362, + "appointment_count": 1346, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 15:21:00", + "prochain_rdv": "2021-06-15 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 960, + "appointment_count": 944, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:57:00", + "prochain_rdv": "2021-06-15 14:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 941, + "appointment_count": 933, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From cc05de880120d127a7b434e97fca6d84cacf01d2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:20:41 +0000 Subject: [PATCH 0727/1182] Updating the times for Region 07 --- 07.json | 76 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/07.json b/07.json index be64cc50457..6fd87077bde 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:43:21.402197+02:00", + "last_updated": "2021-06-09 18:20:41.308840+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 158, + "appointment_count": 156, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 09:40:00", + "prochain_rdv": "2021-06-12 15:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 76, + "appointment_count": 78, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:35:00", + "prochain_rdv": "2021-06-10 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 195, + "appointment_count": 192, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "07", - "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 15.3520379, - "latitude": 57.1664611, - "city": "Uppvidinge", - "cp": "00000" - }, - "metadata": { - "address": "Lillgatan 1, lokal ovan Åseda bilservice AB", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-22 16:00:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1556", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Storgatan 71 A, brevid apoteket", @@ -133,7 +105,7 @@ "prochain_rdv": "2021-06-15 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 56, + "appointment_count": 55, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-10 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 48, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +161,7 @@ "prochain_rdv": "2021-06-10 09:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4074, + "appointment_count": 4053, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ } ], "centres_indisponibles": [ + { + "departement": "07", + "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 15.3520379, + "latitude": 57.1664611, + "city": "Uppvidinge", + "cp": "00000" + }, + "metadata": { + "address": "Lillgatan 1, lokal ovan Åseda bilservice AB", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1556", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Nibehallen", From 51685e3221458c6dfb03feca72e8e20c13401909 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:21:11 +0000 Subject: [PATCH 0728/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 8cee3c26429..df7af72e564 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:43:52.468292+02:00", + "last_updated": "2021-06-09 18:21:10.590333+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d3b41172ab6f58f3d7fcc2683a8d9ba101ce17fb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:21:40 +0000 Subject: [PATCH 0729/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index c040f5e32f0..773a0dbff8b 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:44:20.904240+02:00", + "last_updated": "2021-06-09 18:21:40.321441+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 1489f72115d0731369e60880555a2843e8c93630 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:22:54 +0000 Subject: [PATCH 0730/1182] Updating the times for Region 04 --- 04.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/04.json b/04.json index 065f655371d..1fdf40464c2 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:45:39.537799+02:00", + "last_updated": "2021-06-09 18:22:53.505550+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 11:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 5, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-22 15:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 11, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-17 13:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2686, + "appointment_count": 2688, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 3587788fb46c280830a4361203fc7cc708fe08d6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:23:22 +0000 Subject: [PATCH 0731/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 1be234df200..32139c03c32 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:46:11.989085+02:00", + "last_updated": "2021-06-09 18:23:21.908483+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 450348383fea9440b8338aca43d8a2827b664a9e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:23:52 +0000 Subject: [PATCH 0732/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 341f5a47dd4..057b4e48424 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:46:39.898495+02:00", + "last_updated": "2021-06-09 18:23:52.239807+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4e7199bf287324cc824b861ef061a966321cffcf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:24:26 +0000 Subject: [PATCH 0733/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 32bfab36f15..cfc4bf65532 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:47:15.393673+02:00", + "last_updated": "2021-06-09 18:24:25.497969+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 02502b7a9fbb996fc08d85a0b0637034aa0a3f8d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:28:58 +0000 Subject: [PATCH 0734/1182] Updating the times for Region 22 --- 22.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/22.json b/22.json index 922d0edb021..d1f96c0a290 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:52:10.916990+02:00", + "last_updated": "2021-06-09 18:28:57.778718+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-29 09:31:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 864, + "appointment_count": 873, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 09:33:00", + "prochain_rdv": "2021-06-30 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1624, + "appointment_count": 1456, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 18:00:00", + "prochain_rdv": "2021-06-09 18:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 377, + "appointment_count": 374, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From 383ad2ea25d39a78ca1579bc16463916c977dc58 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 16:29:32 +0000 Subject: [PATCH 0735/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 999b81b20cb..e88bf85796f 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 17:52:44.719611+02:00", + "last_updated": "2021-06-09 18:29:32.185538+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b5314a5300463ad7cbc61c400500b9a9b1271a27 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 17:18:36 +0000 Subject: [PATCH 0736/1182] Updating the stats --- data/output/stats.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 8ead58c05c6..f560574a3bb 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 17, + "disponibles": 16, "total": 19, - "creneaux": 435 + "creneaux": 420 }, "20": { - "disponibles": 5, + "disponibles": 6, "total": 8, - "creneaux": 2909 + "creneaux": 2905 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 19, + "disponibles": 21, "total": 52, - "creneaux": 5677 + "creneaux": 5591 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 4083 + "creneaux": 4020 }, "07": { - "disponibles": 7, + "disponibles": 6, "total": 7, - "creneaux": 4606 + "creneaux": 4582 }, "25": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 3, "total": 19, - "creneaux": 2865 + "creneaux": 2703 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 99, + "disponibles": 100, "total": 339, - "creneaux": 37810 + "creneaux": 37456 } } \ No newline at end of file From e587977fde7cc5d9666541c8230b2b848296441c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:19:11 +0000 Subject: [PATCH 0737/1182] Updating the times for Region 10 --- 10.json | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/10.json b/10.json index ac9ae19729f..3fb35cfae35 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:09:46.094385+02:00", + "last_updated": "2021-06-09 19:19:10.531808+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-15 14:15:00", + "prochain_rdv": "2021-06-22 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-10 14:40:00", + "prochain_rdv": "2021-06-12 08:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 116, + "appointment_count": 115, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 08:45:00", + "prochain_rdv": "2021-06-24 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 56 00" }, - "prochain_rdv": "2021-06-16 11:20:00", + "prochain_rdv": "2021-06-16 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 4, "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-16 17:35:00", + "prochain_rdv": "2021-06-10 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 33, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:25:00", + "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 26, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 14:45:00", + "prochain_rdv": "2021-06-22 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,7 +270,7 @@ "business_hours": null, "phone_number": "0454-73 31 00" }, - "prochain_rdv": "2021-06-17 08:35:00", + "prochain_rdv": "2021-06-24 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-11 11:00:00", + "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, + "appointment_count": 42, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +326,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 10:10:00", + "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 26, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +354,10 @@ "business_hours": null, "phone_number": "0455-73 56 55" }, - "prochain_rdv": "2021-06-23 14:10:00", + "prochain_rdv": "2021-06-23 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 2, "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:35:00", + "prochain_rdv": "2021-06-19 12:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 74, + "appointment_count": 71, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +413,7 @@ "prochain_rdv": "2021-06-23 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, From eac1c2fef383e61a37a69171760d3915df7b95bb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:19:56 +0000 Subject: [PATCH 0738/1182] Updating the times for Region 20 --- 20.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/20.json b/20.json index ee7a3f541ff..8791acff3c8 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:10:35.445624+02:00", + "last_updated": "2021-06-09 19:19:55.756176+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:40:00", + "prochain_rdv": "2021-07-08 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2649, + "appointment_count": 2643, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Ludvika", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Ludvika", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 10:28:00", + "prochain_rdv": "2021-06-30 14:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", + "appointment_count": 196, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Mora", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Mora", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Mora Parken restaurang och konferens, Parkvägen", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-02 12:12:00", + "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2113", + "appointment_count": 39, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:15:00", + "prochain_rdv": "2021-07-01 12:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 197, - "internal_id": "2102", + "appointment_count": 16, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,27 +114,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:50:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, - "internal_id": "2101", + "appointment_count": 0, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +147,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:20:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 17, - "internal_id": "2103", + "appointment_count": 0, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -170,21 +172,19 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Doktor.se / Ludvika", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Ludvika", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Sporthallen Ludvika, Tingshusgatan 18", "business_hours": null, "phone_number": "" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2112", + "internal_id": "2115", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -203,16 +203,16 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Doktor.se / Mora", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Mora", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Mora Parken restaurang och konferens, Parkvägen", "business_hours": null, "phone_number": "" }, @@ -220,7 +220,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "2111", + "internal_id": "2113", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 691c09979659a861aca113e4ea1357d2975c40cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:20:26 +0000 Subject: [PATCH 0739/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 1dcaff56376..39c2a37359e 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:11:04.034656+02:00", + "last_updated": "2021-06-09 19:20:26.089298+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 27649773f2a91ff6691989ed20d61d3c4714c040 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:20:54 +0000 Subject: [PATCH 0740/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 199361e408f..093cd7d290f 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:11:35.056766+02:00", + "last_updated": "2021-06-09 19:20:53.917016+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4223c86e868fbf76d3ff60f22dba09d505856fdc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:21:27 +0000 Subject: [PATCH 0741/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 61565f7d580..a3315012140 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:12:04.882404+02:00", + "last_updated": "2021-06-09 19:21:27.310050+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a4275d083e1ae6a36feaf3d694d93752d00f87d4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:21:56 +0000 Subject: [PATCH 0742/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 5bd6788b57f..3442a1a4244 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:12:35.871293+02:00", + "last_updated": "2021-06-09 19:21:55.811554+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6d36eca6f30695351ca18ee5ea6c9d7524dece9f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:25:13 +0000 Subject: [PATCH 0743/1182] Updating the times for Region 06 --- 06.json | 106 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/06.json b/06.json index cb11375f0d8..3a114ebd318 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:15:54.205275+02:00", + "last_updated": "2021-06-09 19:25:12.618632+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 09:57:00", + "prochain_rdv": "2021-06-24 10:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 45, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-22 13:00:00", + "prochain_rdv": "2021-06-17 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 333, + "appointment_count": 336, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,34 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": "2021-06-24 10:57:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 4, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-16 14:39:00", + "prochain_rdv": "2021-06-16 14:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 224, + "appointment_count": 206, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-17 09:16:00", + "prochain_rdv": "2021-06-18 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 6, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,7 +186,7 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 11:54:00", + "prochain_rdv": "2021-06-23 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 549, @@ -245,7 +217,7 @@ "prochain_rdv": "2021-06-30 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 3, "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 20:21:00", + "prochain_rdv": "2021-06-21 14:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1688, + "appointment_count": 1696, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 09:30:00", + "prochain_rdv": "2021-06-22 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 158, + "appointment_count": 160, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +329,7 @@ "prochain_rdv": "2021-06-23 17:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 48, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:48:00", + "prochain_rdv": "2021-06-22 15:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 273, + "appointment_count": 267, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +410,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-07-07 08:40:00", + "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 272, + "appointment_count": 280, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,7 +438,7 @@ "business_hours": null, "phone_number": "010-242 89 00" }, - "prochain_rdv": "2021-06-23 13:50:00", + "prochain_rdv": "2021-06-29 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -550,10 +522,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-15 13:30:00", + "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 114, + "appointment_count": 110, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -578,10 +550,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-17 13:20:00", + "prochain_rdv": "2021-06-23 10:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 69, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -789,6 +761,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From a1c4bd7d68f73cea18b7ac7862c6438f7d301e32 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:28:51 +0000 Subject: [PATCH 0744/1182] Updating the times for Region 08 --- 08.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/08.json b/08.json index da1b83c89f6..8b9fb7d2eea 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:19:51.868013+02:00", + "last_updated": "2021-06-09 19:28:51.379701+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 131, + "appointment_count": 138, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 18:15:00", + "prochain_rdv": "2021-06-15 18:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 39, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-17 09:35:00", + "prochain_rdv": "2021-06-17 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 172, + "appointment_count": 165, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-17 08:38:00", + "prochain_rdv": "2021-06-17 08:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1346, + "appointment_count": 1294, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-15 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 944, + "appointment_count": 936, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:06:00", + "prochain_rdv": "2021-06-15 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 933, + "appointment_count": 932, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 2015bf8804f173f1e5f4964b909ae2ced25d719c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:29:39 +0000 Subject: [PATCH 0745/1182] Updating the times for Region 07 --- 07.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/07.json b/07.json index 6fd87077bde..26e0c2879fd 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:20:41.308840+02:00", + "last_updated": "2021-06-09 19:29:38.576012+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 156, + "appointment_count": 152, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 15:35:00", + "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 78, + "appointment_count": 74, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:45:00", + "prochain_rdv": "2021-06-10 09:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 192, + "appointment_count": 181, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 13:10:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 45, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:08:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4053, + "appointment_count": 4018, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From c10de9684a34204539ef57b84079029115b7397f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:30:06 +0000 Subject: [PATCH 0746/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index df7af72e564..35a0560f8ee 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:21:10.590333+02:00", + "last_updated": "2021-06-09 19:30:06.271671+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7eac2d86f1b6098e27739a2ab8e9f497f3bc48a3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:30:38 +0000 Subject: [PATCH 0747/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 773a0dbff8b..0f7e2f15fc7 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:21:40.321441+02:00", + "last_updated": "2021-06-09 19:30:38.154839+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 95fb4d19cddd86a1f753b4e43969429322cda98d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:31:46 +0000 Subject: [PATCH 0748/1182] Updating the times for Region 04 --- 04.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/04.json b/04.json index 1fdf40464c2..a9314421216 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:22:53.505550+02:00", + "last_updated": "2021-06-09 19:31:45.459284+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-13 09:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 3, "internal_id": 30005, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-10 11:25:00", + "prochain_rdv": "2021-06-16 11:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 3, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-13 14:30:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 15:55:00", + "prochain_rdv": "2021-06-22 16:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 9, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +130,7 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-16 19:39:00", + "prochain_rdv": "2021-06-16 19:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 450, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-17 13:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2688, + "appointment_count": 2686, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 4126f197c90fdb83ef5965cef8ab9546c117a468 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:32:14 +0000 Subject: [PATCH 0749/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 32139c03c32..598625d0c67 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:23:21.908483+02:00", + "last_updated": "2021-06-09 19:32:13.858675+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 036939788a4335f6527b90a47ccd8ec00aac9b99 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:32:43 +0000 Subject: [PATCH 0750/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 057b4e48424..8fdef5a5dc9 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:23:52.239807+02:00", + "last_updated": "2021-06-09 19:32:42.482837+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a459eadd2f54984bff4cb691230005549bf1fcbe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:33:11 +0000 Subject: [PATCH 0751/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index cfc4bf65532..dc48efcf162 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:24:25.497969+02:00", + "last_updated": "2021-06-09 19:33:10.802922+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d940c1a4e7a423b37550add9f71cabfed8a9f969 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:37:34 +0000 Subject: [PATCH 0752/1182] Updating the times for Region 22 --- 22.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/22.json b/22.json index d1f96c0a290..dc8fd1b81a5 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:28:57.778718+02:00", + "last_updated": "2021-06-09 19:37:33.894198+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 09:31:00", + "prochain_rdv": "2021-06-29 09:38:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 873, + "appointment_count": 852, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 09:39:00", + "prochain_rdv": "2021-06-30 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1456, + "appointment_count": 1134, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 18:30:00", + "prochain_rdv": "2021-06-09 19:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 374, + "appointment_count": 367, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From b2a9c24026860ea285382c920b6440391677b3a0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 17:38:03 +0000 Subject: [PATCH 0753/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index e88bf85796f..fb5f6aa4bb4 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 18:29:32.185538+02:00", + "last_updated": "2021-06-09 19:38:02.907930+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From fd5b21378e40101b5b5b931b47e60871ff263eeb Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 18:05:05 +0000 Subject: [PATCH 0754/1182] Updating the stats --- data/output/stats.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index f560574a3bb..09e260c65e8 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 16, "total": 19, - "creneaux": 420 + "creneaux": 405 }, "20": { - "disponibles": 6, + "disponibles": 4, "total": 8, - "creneaux": 2905 + "creneaux": 2894 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 21, + "disponibles": 20, "total": 52, - "creneaux": 5591 + "creneaux": 5574 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 4020 + "creneaux": 3945 }, "07": { "disponibles": 6, "total": 7, - "creneaux": 4582 + "creneaux": 4525 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 6, "total": 6, - "creneaux": 3158 + "creneaux": 3152 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 3, "total": 19, - "creneaux": 2703 + "creneaux": 2353 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 100, + "disponibles": 98, "total": 339, - "creneaux": 37456 + "creneaux": 36925 } } \ No newline at end of file From e698e5fbb70a99e67899668f11d163b63f0bb8cc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:05:31 +0000 Subject: [PATCH 0755/1182] Updating the times for Region 10 --- 10.json | 200 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 100 insertions(+), 100 deletions(-) diff --git a/10.json b/10.json index 3fb35cfae35..7a38ab6408e 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:19:10.531808+02:00", + "last_updated": "2021-06-09 20:05:31.370748+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 08:35:00", + "prochain_rdv": "2021-06-12 09:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 115, + "appointment_count": 113, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": "2021-06-24 13:25:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-16 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 3, "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 13:50:00", + "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 34, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 27, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:15:00", + "prochain_rdv": "2021-06-24 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +189,7 @@ "prochain_rdv": "2021-06-22 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 3, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -255,34 +227,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", - "cp": "00000" - }, - "metadata": { - "address": "Rösjövägen 10", - "business_hours": null, - "phone_number": "0454-73 31 00" - }, - "prochain_rdv": "2021-06-24 15:45:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "578", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Olofströmskliniken, Olofström", @@ -298,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:30:00", + "prochain_rdv": "2021-06-22 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 40, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +273,7 @@ "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +298,10 @@ "business_hours": null, "phone_number": "0455-73 56 55" }, - "prochain_rdv": "2021-06-23 14:15:00", + "prochain_rdv": "2021-06-23 15:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +329,7 @@ "prochain_rdv": "2021-06-19 12:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 71, + "appointment_count": 70, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -395,34 +339,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": "2021-06-23 09:00:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -481,6 +397,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Olofströms vårdcentral, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", + "cp": "00000" + }, + "metadata": { + "address": "Rösjövägen 10", + "business_hours": null, + "phone_number": "0454-73 31 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "578", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", @@ -509,6 +481,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", From c84cdcd8c96599503c2456de132b69d6617ae8d8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:06:19 +0000 Subject: [PATCH 0756/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index 8791acff3c8..ef1b53edb48 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:19:55.756176+02:00", + "last_updated": "2021-06-09 20:06:19.352376+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-08 09:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2643, + "appointment_count": 2638, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:15:00", + "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 196, + "appointment_count": 193, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 38, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:25:00", + "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 16, + "appointment_count": 15, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 368aa1c4ed79c7f127e0ec8cc13c31c8252791f1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:06:48 +0000 Subject: [PATCH 0757/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 39c2a37359e..756dcdcb75b 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:20:26.089298+02:00", + "last_updated": "2021-06-09 20:06:48.183029+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 960a42193c95b2288c79a158868ab39d301bdd4e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:07:19 +0000 Subject: [PATCH 0758/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 093cd7d290f..a4ed48b1bd3 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:20:53.917016+02:00", + "last_updated": "2021-06-09 20:07:18.702976+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f713b860721ccb5bba2e7c21dc92c3a6de2166a6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:07:50 +0000 Subject: [PATCH 0759/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index a3315012140..6842d5b4cf5 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:21:27.310050+02:00", + "last_updated": "2021-06-09 20:07:49.939803+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 50d0c1b9c732937404ee8fecd7a4bc01f4a65870 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:08:22 +0000 Subject: [PATCH 0760/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 3442a1a4244..c437744eeaa 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:21:55.811554+02:00", + "last_updated": "2021-06-09 20:08:21.850292+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 804e3f3a45f74e822ce543297238a63ebf911b07 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:11:47 +0000 Subject: [PATCH 0761/1182] Updating the times for Region 06 --- 06.json | 206 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 103 insertions(+), 103 deletions(-) diff --git a/06.json b/06.json index 3a114ebd318..f692547b78d 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:25:12.618632+02:00", + "last_updated": "2021-06-09 20:11:46.440225+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:20:00", + "prochain_rdv": "2021-06-12 11:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 71, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 168, + "appointment_count": 164, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-17 14:24:00", + "prochain_rdv": "2021-06-22 13:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 336, + "appointment_count": 330, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-16 14:33:00", + "prochain_rdv": "2021-06-23 08:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 206, + "appointment_count": 184, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,34 +143,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": "2021-06-18 08:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 6, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:24:00", + "prochain_rdv": "2021-06-23 14:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 549, + "appointment_count": 546, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +171,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", - "cp": "00000" - }, - "metadata": { - "address": "Valåkravägen 1, Landsbro", - "business_hours": null, - "phone_number": "010-243 25 10" - }, - "prochain_rdv": "2021-06-30 08:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1190", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Mullsjö vårdcentral", @@ -270,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-21 14:21:00", + "prochain_rdv": "2021-06-23 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1696, + "appointment_count": 1684, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +242,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:05:00", + "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 160, + "appointment_count": 156, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +298,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-22 15:52:00", + "prochain_rdv": "2021-06-23 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 267, + "appointment_count": 264, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +357,7 @@ "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 280, + "appointment_count": 264, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -423,34 +367,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.150961812634723, - "latitude": 57.78769726541282, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Kortebovägen 6, Jönköping", - "business_hours": null, - "phone_number": "010-242 89 00" - }, - "prochain_rdv": "2021-06-29 13:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "1224", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -494,10 +410,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 10:40:00", + "prochain_rdv": "2021-06-22 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 26, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -789,6 +705,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", @@ -817,6 +761,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Valåkravägen 1, Landsbro", + "business_hours": null, + "phone_number": "010-243 25 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1190", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1209,6 +1181,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", From d294c3a45c6381c0fa9a108ce09bba7e5df8596d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:15:16 +0000 Subject: [PATCH 0762/1182] Updating the times for Region 08 --- 08.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/08.json b/08.json index 8b9fb7d2eea..cf4b25ddbff 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:28:51.379701+02:00", + "last_updated": "2021-06-09 20:15:15.969843+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 08:55:00", + "prochain_rdv": "2021-06-17 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 138, + "appointment_count": 108, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 10:40:00", + "prochain_rdv": "2021-06-16 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 21, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:35:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 188, + "appointment_count": 181, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-17 08:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1294, + "appointment_count": 1285, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-15 15:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 936, + "appointment_count": 928, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 13:42:00", + "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 932, + "appointment_count": 924, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-17 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 216, + "appointment_count": 202, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From ab4f33ab9018badffbbf84b8016691f1463169f6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:16:06 +0000 Subject: [PATCH 0763/1182] Updating the times for Region 07 --- 07.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/07.json b/07.json index 26e0c2879fd..a76a23cce8d 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:29:38.576012+02:00", + "last_updated": "2021-06-09 20:16:06.293113+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:35:00", + "prochain_rdv": "2021-06-12 09:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 153, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 74, + "appointment_count": 72, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 181, + "appointment_count": 172, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,7 +158,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-15 15:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 4018, From 2be35822b625afa48deb32f445460d629926f2dc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:16:38 +0000 Subject: [PATCH 0764/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 35a0560f8ee..325e9e6183a 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:30:06.271671+02:00", + "last_updated": "2021-06-09 20:16:38.056635+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 83ccc196849c8ce812b8606029a4287850e41ea1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:17:10 +0000 Subject: [PATCH 0765/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 0f7e2f15fc7..4a2a4ac6a93 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:30:38.154839+02:00", + "last_updated": "2021-06-09 20:17:09.534587+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 96382c16187b4428e719658f9c83a5d37fd35989 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:18:23 +0000 Subject: [PATCH 0766/1182] Updating the times for Region 04 --- 04.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/04.json b/04.json index a9314421216..4f035070e63 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:31:45.459284+02:00", + "last_updated": "2021-06-09 20:18:22.845757+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 11:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-13 14:30:00", + "prochain_rdv": "2021-06-20 14:05:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 1, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-16 19:48:00", + "prochain_rdv": "2021-06-19 11:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 450, + "appointment_count": 442, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 13:12:00", + "prochain_rdv": "2021-06-17 13:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2686, + "appointment_count": 2680, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From d7d1436ae6e8d21713580e409c63fca23494e92d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:18:51 +0000 Subject: [PATCH 0767/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 598625d0c67..82d2be56408 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:32:13.858675+02:00", + "last_updated": "2021-06-09 20:18:50.605650+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7ecb0979eab3fbdddd0d31730af3b6dc4ab5d34d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:19:16 +0000 Subject: [PATCH 0768/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 8fdef5a5dc9..55d5c8f6ef6 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:32:42.482837+02:00", + "last_updated": "2021-06-09 20:19:15.484153+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 69fceb0fccb12fdcc955b4ea82b81ea7c7eb65da Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:19:46 +0000 Subject: [PATCH 0769/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index dc48efcf162..61e973b4612 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:33:10.802922+02:00", + "last_updated": "2021-06-09 20:19:45.550064+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 357cf960ea16b67012b36f6dbb678e09326a122c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:24:19 +0000 Subject: [PATCH 0770/1182] Updating the times for Region 22 --- 22.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/22.json b/22.json index dc8fd1b81a5..ebd4c8f83b2 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:37:33.894198+02:00", + "last_updated": "2021-06-09 20:24:18.907139+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 09:38:00", + "prochain_rdv": "2021-06-10 10:34:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 852, + "appointment_count": 851, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 10:24:00", + "prochain_rdv": "2021-06-30 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1134, + "appointment_count": 966, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-09 19:40:00", + "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 367, + "appointment_count": 365, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From b938805373d18253632044451317f53c4826d809 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:24:48 +0000 Subject: [PATCH 0771/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index fb5f6aa4bb4..6992c436ee9 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 19:38:02.907930+02:00", + "last_updated": "2021-06-09 20:24:47.897462+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a4c27371d3e02044c2b368b562292ccde5f98399 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 18:50:28 +0000 Subject: [PATCH 0772/1182] Updating the stats --- data/output/stats.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 09e260c65e8..a98edec07c5 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 16, + "disponibles": 13, "total": 19, - "creneaux": 405 + "creneaux": 395 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2894 + "creneaux": 2884 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 20, + "disponibles": 17, "total": 52, - "creneaux": 5574 + "creneaux": 5494 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 3945 + "creneaux": 3853 }, "07": { "disponibles": 6, "total": 7, - "creneaux": 4525 + "creneaux": 4515 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 6, "total": 6, - "creneaux": 3152 + "creneaux": 3137 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 3, "total": 19, - "creneaux": 2353 + "creneaux": 2182 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 98, + "disponibles": 92, "total": 339, - "creneaux": 36925 + "creneaux": 36537 } } \ No newline at end of file From a61dfd43bc9f84aa9f0c72ac3b06fe1c7a53c109 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:51:06 +0000 Subject: [PATCH 0773/1182] Updating the times for Region 10 --- 10.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/10.json b/10.json index 7a38ab6408e..4cc5463c975 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:05:31.370748+02:00", + "last_updated": "2021-06-09 20:51:05.195878+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:50:00", + "prochain_rdv": "2021-06-22 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 22, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-12 09:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 113, + "appointment_count": 112, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-16 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 25, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 21, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +357,7 @@ "prochain_rdv": "2021-06-21 15:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, From c34d28f699073ab3bc8786569053149b6e753d0e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:51:54 +0000 Subject: [PATCH 0774/1182] Updating the times for Region 20 --- 20.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/20.json b/20.json index ef1b53edb48..5a639522a0e 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:06:19.352376+02:00", + "last_updated": "2021-06-09 20:51:53.984737+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:48:00", + "prochain_rdv": "2021-07-08 09:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2638, + "appointment_count": 2626, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 193, + "appointment_count": 191, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-28 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 38, + "appointment_count": 36, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 9, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From fe675dcb0f8031ed67300f9a758d020d322d20e4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:52:17 +0000 Subject: [PATCH 0775/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 756dcdcb75b..e5e54ae9b76 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:06:48.183029+02:00", + "last_updated": "2021-06-09 20:52:17.400456+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 32e579f412bcd02217cc7529cf33702af154b41f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:52:48 +0000 Subject: [PATCH 0776/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index a4ed48b1bd3..8d32fb87f78 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:07:18.702976+02:00", + "last_updated": "2021-06-09 20:52:47.437126+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e1e1bd6634cba52a8756563754b54c0c31c68f19 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:53:23 +0000 Subject: [PATCH 0777/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 6842d5b4cf5..655ed593d23 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:07:49.939803+02:00", + "last_updated": "2021-06-09 20:53:22.785923+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 69c68617ee6e1ca6a3bcf9a0b66108914016057e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:53:51 +0000 Subject: [PATCH 0778/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index c437744eeaa..4fbf8ffa793 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:08:21.850292+02:00", + "last_updated": "2021-06-09 20:53:51.337602+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d236ccbce1ff4c3236792b3cea5a8faf6293270f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 18:57:03 +0000 Subject: [PATCH 0779/1182] Updating the times for Region 06 --- 06.json | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/06.json b/06.json index f692547b78d..83109b62a34 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:11:46.440225+02:00", + "last_updated": "2021-06-09 20:57:02.358502+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-12 11:05:00", + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 71, + "appointment_count": 69, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-22 13:04:00", + "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 330, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:06:00", + "prochain_rdv": "2021-06-23 08:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 184, + "appointment_count": 176, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 14:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 546, + "appointment_count": 558, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 10:24:00", + "prochain_rdv": "2021-06-10 16:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1684, + "appointment_count": 1688, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:00:00", + "prochain_rdv": "2021-06-22 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 156, + "appointment_count": 152, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 17:50:00", + "prochain_rdv": "2021-06-23 18:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 39, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-23 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 264, + "appointment_count": 255, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-30 13:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 20, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,7 +354,7 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-10 10:25:00", + "prochain_rdv": "2021-06-17 15:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 264, @@ -413,7 +413,7 @@ "prochain_rdv": "2021-06-22 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 26, + "appointment_count": 24, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,10 +466,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-23 10:08:00", + "prochain_rdv": "2021-06-24 15:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 66, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, From b5cd7d8a43ed90af9f33ec7a2698375668b56a98 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:00:34 +0000 Subject: [PATCH 0780/1182] Updating the times for Region 08 --- 08.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/08.json b/08.json index cf4b25ddbff..8e4ddb931c2 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:15:15.969843+02:00", + "last_updated": "2021-06-09 21:00:33.745055+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 09:10:00", + "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 115, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-16 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 181, + "appointment_count": 188, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-17 08:42:00", + "prochain_rdv": "2021-06-10 15:02:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1285, + "appointment_count": 2251, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 15:45:00", + "prochain_rdv": "2021-06-15 15:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 928, + "appointment_count": 912, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-17 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 202, + "appointment_count": 207, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 39a7adfb78d318a54af22461662b8c14b6fea886 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:01:25 +0000 Subject: [PATCH 0781/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index a76a23cce8d..ca56e44437d 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:16:06.293113+02:00", + "last_updated": "2021-06-09 21:01:25.286416+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:25:00", + "prochain_rdv": "2021-06-12 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 153, + "appointment_count": 147, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 72, + "appointment_count": 68, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:55:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 172, + "appointment_count": 165, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 15:28:00", + "prochain_rdv": "2021-06-16 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4018, + "appointment_count": 4011, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From fb1fc84a836f57faa82b0a72447d21fbd7cbca4a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:01:53 +0000 Subject: [PATCH 0782/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 325e9e6183a..3db3a102c98 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:16:38.056635+02:00", + "last_updated": "2021-06-09 21:01:52.955584+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From cdb2c5f9b528f5e08c8d421d42dc74d8551aaa82 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:02:20 +0000 Subject: [PATCH 0783/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 4a2a4ac6a93..836e38ac220 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:17:09.534587+02:00", + "last_updated": "2021-06-09 21:02:19.979861+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 7dae31f447dcc17721cf97b9c6360bce8bab896a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:03:34 +0000 Subject: [PATCH 0784/1182] Updating the times for Region 04 --- 04.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/04.json b/04.json index 4f035070e63..01ca857e8c8 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:18:22.845757+02:00", + "last_updated": "2021-06-09 21:03:33.953035+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-13 09:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 2, "internal_id": 30005, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-16 11:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-20 14:05:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-22 16:05:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 8, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-19 11:33:00", + "prochain_rdv": "2021-06-10 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 442, + "appointment_count": 440, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 13:56:00", + "prochain_rdv": "2021-06-17 10:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2680, + "appointment_count": 2678, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From fcb734af0a04a694733336595ac780306d1686c3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:04:04 +0000 Subject: [PATCH 0785/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 82d2be56408..dbb03dccdb7 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:18:50.605650+02:00", + "last_updated": "2021-06-09 21:04:03.270198+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8c0503df1a7ae2456e6f38392affbfce5ab14ae0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:04:34 +0000 Subject: [PATCH 0786/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 55d5c8f6ef6..13b45b3062d 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:19:15.484153+02:00", + "last_updated": "2021-06-09 21:04:34.004871+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 411be6e5e88b0e3a4644be5b694a5fec85472e5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:05:06 +0000 Subject: [PATCH 0787/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 61e973b4612..2c09a71cc69 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:19:45.550064+02:00", + "last_updated": "2021-06-09 21:05:06.179879+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From cdef21e503eb71b1b3f1115d15e9d17bc0e1f008 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:09:38 +0000 Subject: [PATCH 0788/1182] Updating the times for Region 22 --- 22.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/22.json b/22.json index ebd4c8f83b2..dc3a79a5ff5 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:24:18.907139+02:00", + "last_updated": "2021-06-09 21:09:37.948482+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 10:34:00", + "prochain_rdv": "2021-06-29 09:38:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 851, + "appointment_count": 828, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 10:54:00", + "prochain_rdv": "2021-06-30 11:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 966, + "appointment_count": 714, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, From fef20e5932f7947e6e1a61506b62f79c9fa8ec8a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:10:09 +0000 Subject: [PATCH 0789/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 6992c436ee9..1c844366e2d 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:24:47.897462+02:00", + "last_updated": "2021-06-09 21:10:08.964579+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d827fb54d3e0c8812cf9b7ae014d49dbe10136ee Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 19:18:48 +0000 Subject: [PATCH 0790/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index a98edec07c5..8546634f9d8 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 13, "total": 19, - "creneaux": 395 + "creneaux": 388 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2884 + "creneaux": 2862 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 17, "total": 52, - "creneaux": 5494 + "creneaux": 5471 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 3853 + "creneaux": 4822 }, "07": { "disponibles": 6, "total": 7, - "creneaux": 4515 + "creneaux": 4491 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 6, + "disponibles": 5, "total": 6, - "creneaux": 3137 + "creneaux": 3131 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 3, "total": 19, - "creneaux": 2182 + "creneaux": 1907 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 92, + "disponibles": 91, "total": 339, - "creneaux": 36537 + "creneaux": 37149 } } \ No newline at end of file From db1f365e5281b0f73e6a7bc0f9cf6b8f7aef6157 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:19:30 +0000 Subject: [PATCH 0791/1182] Updating the times for Region 10 --- 10.json | 88 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/10.json b/10.json index 4cc5463c975..3e3fcde9c5c 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:51:05.195878+02:00", + "last_updated": "2021-06-09 21:19:30.281102+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:40:00", + "prochain_rdv": "2021-06-22 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 19, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-12 09:55:00", + "prochain_rdv": "2021-06-17 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 112, + "appointment_count": 110, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 10:30:00", + "prochain_rdv": "2021-06-22 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 33, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:30:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 23, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 11:35:00", + "prochain_rdv": "2021-06-15 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 3, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 16:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 49, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 23, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": "2021-06-23 15:30:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:40:00", + "prochain_rdv": "2021-06-19 12:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 70, + "appointment_count": 67, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +326,10 @@ "business_hours": null, "phone_number": "0455-73 54 30" }, - "prochain_rdv": "2021-06-21 15:05:00", + "prochain_rdv": "2021-06-24 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "581", "vaccine_type": null, "appointment_by_phone_only": false, @@ -453,6 +425,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From b114fcb03ab7d8a10e2955186febecb22c602884 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:20:17 +0000 Subject: [PATCH 0792/1182] Updating the times for Region 20 --- 20.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/20.json b/20.json index 5a639522a0e..689509a2276 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:51:53.984737+02:00", + "last_updated": "2021-06-09 21:20:17.051224+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:52:00", + "prochain_rdv": "2021-07-05 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2626, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-15 11:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -74,7 +102,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:50:00", + "prochain_rdv": "2021-06-28 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 36, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Doktor.se / Mora", From ebbf897e62422b704f7107c5e458c88c589264c2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:20:49 +0000 Subject: [PATCH 0793/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index e5e54ae9b76..852b4fcfc16 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:52:17.400456+02:00", + "last_updated": "2021-06-09 21:20:49.171909+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 992521932eb88ede18d9713108ad95ccb45f8bc8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:21:17 +0000 Subject: [PATCH 0794/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 8d32fb87f78..03ff8ac3a4f 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:52:47.437126+02:00", + "last_updated": "2021-06-09 21:21:16.345032+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9453a93bf97e0e8cabf6340e709e31bcab528a12 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:21:46 +0000 Subject: [PATCH 0795/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 655ed593d23..fdad2dbbde8 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:53:22.785923+02:00", + "last_updated": "2021-06-09 21:21:45.469899+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 895ae61d8d6f1e8ec37cebaf5d27aa22f6c0fc3a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:22:16 +0000 Subject: [PATCH 0796/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 4fbf8ffa793..6f1670c14f1 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:53:51.337602+02:00", + "last_updated": "2021-06-09 21:22:15.573523+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ef17cd79bfee283f751637c154633431bdf54abe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:25:55 +0000 Subject: [PATCH 0797/1182] Updating the times for Region 06 --- 06.json | 150 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/06.json b/06.json index 83109b62a34..56560c12536 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 20:57:02.358502+02:00", + "last_updated": "2021-06-09 21:25:55.283582+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:20:00", + "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 69, + "appointment_count": 70, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 330, + "appointment_count": 321, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,6 +115,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": "2021-06-10 14:21:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:12:00", + "prochain_rdv": "2021-06-23 08:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 176, + "appointment_count": 170, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +171,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": "2021-06-22 10:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -161,7 +217,7 @@ "prochain_rdv": "2021-06-23 14:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 558, + "appointment_count": 549, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,7 +270,7 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-10 16:21:00", + "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1688, @@ -245,7 +301,7 @@ "prochain_rdv": "2021-06-22 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 150, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +326,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:25:00", + "prochain_rdv": "2021-06-23 17:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 42, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-23 10:00:00", + "prochain_rdv": "2021-06-23 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 255, + "appointment_count": 258, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:54:00", + "prochain_rdv": "2021-06-30 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 18, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +410,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-17 15:10:00", + "prochain_rdv": "2021-07-07 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 264, + "appointment_count": 256, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,10 +522,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 15:00:00", + "prochain_rdv": "2021-06-29 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 63, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -677,62 +733,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From 7e359c4e4119cb5ec7b286d2f6ed1d10d137873b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:29:37 +0000 Subject: [PATCH 0798/1182] Updating the times for Region 08 --- 08.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/08.json b/08.json index 8e4ddb931c2..ccea440529a 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:00:33.745055+02:00", + "last_updated": "2021-06-09 21:29:37.381270+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Emmaboda hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.536922734414482, + "latitude": 56.63139260693963, + "city": "Emmaboda", + "cp": "00000" + }, + "metadata": { + "address": "Rådhusgatan 12, Emmaboda", + "business_hours": null, + "phone_number": "0471-185 14" + }, + "prochain_rdv": "2021-06-17 10:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 7, + "internal_id": "506", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Hultsfreds hälsocentral", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:35:00", + "prochain_rdv": "2021-06-16 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 188, + "appointment_count": 172, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:02:00", + "prochain_rdv": "2021-06-10 15:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2251, + "appointment_count": 2236, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 15:54:00", + "prochain_rdv": "2021-06-14 11:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 912, + "appointment_count": 896, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +245,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 924, + "appointment_count": 916, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -453,34 +481,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Emmaboda hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.536922734414482, - "latitude": 56.63139260693963, - "city": "Emmaboda", - "cp": "00000" - }, - "metadata": { - "address": "Rådhusgatan 12, Emmaboda", - "business_hours": null, - "phone_number": "0471-185 14" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "506", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Gamleby hälsocentral", From ccbe408f717ae2d62be26afb8a9e692f0b8d040f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:30:30 +0000 Subject: [PATCH 0799/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index ca56e44437d..49ef48f46f3 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:01:25.286416+02:00", + "last_updated": "2021-06-09 21:30:29.464211+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 147, + "appointment_count": 144, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 68, + "appointment_count": 67, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 162, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 44, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 10:04:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4011, + "appointment_count": 4004, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From efeb012019379da9eaa196991680a468bb61b09d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:30:58 +0000 Subject: [PATCH 0800/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 3db3a102c98..da916abd339 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:01:52.955584+02:00", + "last_updated": "2021-06-09 21:30:57.913162+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From d9ae3b5840ceea461ab2013ee26d077c23254d18 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:31:24 +0000 Subject: [PATCH 0801/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 836e38ac220..5eb4b3846be 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:02:19.979861+02:00", + "last_updated": "2021-06-09 21:31:24.159813+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5ad3469a1a6be605d910f72ab22ddec1617b193b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:32:41 +0000 Subject: [PATCH 0802/1182] Updating the times for Region 04 --- 04.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/04.json b/04.json index 01ca857e8c8..ffe7ea380da 100644 --- a/04.json +++ b/04.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-09 21:03:33.953035+02:00", + "last_updated": "2021-06-09 21:32:40.392023+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "04", - "nom": "Vaccina Flen, Flen", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 16.589337823953205, - "latitude": 59.05905571299985, - "city": "Flen", - "cp": "64237" - }, - "metadata": { - "address": "Götgatan 6, 642 37 Flen", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-13 09:30:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": 30005, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Gnesta, Gnesta", @@ -49,7 +21,7 @@ "prochain_rdv": "2021-06-16 11:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 1, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-17 10:56:00", + "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2678, + "appointment_count": 2682, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,6 +201,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From 0c4e3d1f53fdf48e6835a57bf61b107c7a84bfbe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:33:06 +0000 Subject: [PATCH 0803/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index dbb03dccdb7..ca3921863eb 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:04:03.270198+02:00", + "last_updated": "2021-06-09 21:33:05.733672+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From fd01bc483c3f03b11b1eb19b20a08a6af7935787 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:33:37 +0000 Subject: [PATCH 0804/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 13b45b3062d..19588986986 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:04:34.004871+02:00", + "last_updated": "2021-06-09 21:33:37.292489+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 165b63426d21b361fd3335e221753779561ca4f5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:34:13 +0000 Subject: [PATCH 0805/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 2c09a71cc69..f6303fb9ec6 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:05:06.179879+02:00", + "last_updated": "2021-06-09 21:34:13.256654+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2615986c67b45e68644f2ef4ede3d9ee9b5c99bb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:38:28 +0000 Subject: [PATCH 0806/1182] Updating the times for Region 22 --- 22.json | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/22.json b/22.json index dc3a79a5ff5..ab639ee5a53 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:09:37.948482+02:00", + "last_updated": "2021-06-09 21:38:27.734317+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 09:38:00", + "prochain_rdv": "2021-06-29 09:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 828, + "appointment_count": 804, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 11:36:00", + "prochain_rdv": "2021-06-30 13:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 714, + "appointment_count": 585, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -61,24 +61,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", + "nom": "Vaccinationsenhet Fränsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.273690876743526, - "latitude": 63.16638706103348, - "city": "Sollefteå", + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", "cp": "00000" }, "metadata": { - "address": "Hullsta gård, Storgatan 69", + "address": "Mårtensvägen 2, Fränsta", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 09:10:00", + "prochain_rdv": "2021-06-11 10:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 365, - "internal_id": "1325", + "appointment_count": 2, + "internal_id": "926", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -86,29 +86,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "22", - "nom": "Vaccinationsenhet Fränsta", + "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", + "longitude": 17.273690876743526, + "latitude": 63.16638706103348, + "city": "Sollefteå", "cp": "00000" }, "metadata": { - "address": "Mårtensvägen 2, Fränsta", + "address": "Hullsta gård, Storgatan 69", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": null, + "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", + "appointment_count": 365, + "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -116,7 +114,9 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From fc244e5d8b6b5b189eee1a93978d9ad31e937f16 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:38:57 +0000 Subject: [PATCH 0807/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 1c844366e2d..1aee517da03 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:10:08.964579+02:00", + "last_updated": "2021-06-09 21:38:57.401538+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b7727379e3ac1dfb57984700186f2122ad2ab932 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 19:44:27 +0000 Subject: [PATCH 0808/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 8546634f9d8..76bd47ee48f 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 12, "total": 19, - "creneaux": 388 + "creneaux": 376 }, "20": { - "disponibles": 4, + "disponibles": 5, "total": 8, - "creneaux": 2862 + "creneaux": 2863 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 17, + "disponibles": 19, "total": 52, - "creneaux": 5471 + "creneaux": 5444 }, "08": { - "disponibles": 9, + "disponibles": 10, "total": 30, - "creneaux": 4822 + "creneaux": 4774 }, "07": { "disponibles": 6, "total": 7, - "creneaux": 4491 + "creneaux": 4476 }, "25": { "disponibles": 0, @@ -60,7 +60,7 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, "creneaux": 3131 }, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 3, + "disponibles": 4, "total": 19, - "creneaux": 1907 + "creneaux": 1756 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 91, + "disponibles": 94, "total": 339, - "creneaux": 37149 + "creneaux": 36897 } } \ No newline at end of file From 290e645e1b763cf74dcef23a9d32a5e79b00b09e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:44:52 +0000 Subject: [PATCH 0809/1182] Updating the times for Region 10 --- 10.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/10.json b/10.json index 3e3fcde9c5c..47996f538cf 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:19:30.281102+02:00", + "last_updated": "2021-06-09 21:44:52.505388+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 09:40:00", + "prochain_rdv": "2021-06-22 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 19, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-17 13:20:00", + "prochain_rdv": "2021-06-17 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 109, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": "2021-06-16 16:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0455-73 56 00" }, - "prochain_rdv": "2021-06-16 10:45:00", + "prochain_rdv": "2021-06-16 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +130,7 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-22 10:15:00", + "prochain_rdv": "2021-06-10 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 33, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 24, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:20:00", + "prochain_rdv": "2021-06-17 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,7 +214,7 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-15 10:35:00", + "prochain_rdv": "2021-06-22 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 3, @@ -217,7 +245,7 @@ "prochain_rdv": "2021-06-16 16:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 50, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:10:00", + "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 40, + "appointment_count": 37, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +301,7 @@ "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,7 +326,7 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:50:00", + "prochain_rdv": "2021-06-19 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 67, @@ -369,34 +397,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Olofströms vårdcentral, Olofström", From 27942e170e968ea7507f867bf89b3bb39c6c7735 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:45:40 +0000 Subject: [PATCH 0810/1182] Updating the times for Region 20 --- 20.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/20.json b/20.json index 689509a2276..b3516e70cf9 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:20:17.051224+02:00", + "last_updated": "2021-06-09 21:45:39.045791+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 15:12:00", + "prochain_rdv": "2021-06-24 12:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2626, + "appointment_count": 2624, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-15 11:20:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Doktor.se / Mora", From 475eeebcdbcf3bf9f991a18dc06163969430164c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:46:10 +0000 Subject: [PATCH 0811/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 852b4fcfc16..4c6e0e4585c 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:20:49.171909+02:00", + "last_updated": "2021-06-09 21:46:10.043090+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7a42a7ea0583ac9ef49e9bb4d7bbd5dbb265b096 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:46:40 +0000 Subject: [PATCH 0812/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 03ff8ac3a4f..100716ec918 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:21:16.345032+02:00", + "last_updated": "2021-06-09 21:46:39.887688+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9c13f6e0ce3e048dfd02c6d05a8286bce238a7c3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:47:10 +0000 Subject: [PATCH 0813/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index fdad2dbbde8..73ee2f0ae01 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:21:45.469899+02:00", + "last_updated": "2021-06-09 21:47:09.560650+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5f1ed6e28be631d91829ba061471ecf16e11d323 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:47:38 +0000 Subject: [PATCH 0814/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 6f1670c14f1..2633d457f77 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:22:15.573523+02:00", + "last_updated": "2021-06-09 21:47:37.507730+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From dde138582753e3391fb62c6aa875b2bfadab64ef Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:51:00 +0000 Subject: [PATCH 0815/1182] Updating the times for Region 06 --- 06.json | 162 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 81 insertions(+), 81 deletions(-) diff --git a/06.json b/06.json index 56560c12536..25598dde869 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:25:55.283582+02:00", + "last_updated": "2021-06-09 21:50:59.959074+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 70, + "appointment_count": 67, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 164, + "appointment_count": 152, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -115,34 +115,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Habo vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.090684110997172, - "latitude": 57.90910068255196, - "city": "Habo", - "cp": "00000" - }, - "metadata": { - "address": "Kärrsvägen 37, Habo", - "business_hours": null, - "phone_number": "010-242 48 00" - }, - "prochain_rdv": "2021-06-10 14:21:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1184", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", @@ -158,7 +130,7 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:09:00", + "prochain_rdv": "2021-06-23 08:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 170, @@ -173,24 +145,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-22 10:00:00", + "prochain_rdv": "2021-06-23 14:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1187", + "appointment_count": 549, + "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +173,24 @@ }, { "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "nom": "Bra Liv Mullsjö vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, - "city": "Jönköping", + "longitude": 13.88589429818079, + "latitude": 57.92107739299626, + "city": "Mullsjö", "cp": "00000" }, "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "address": "Gunnarsbovägen 35, Mullsjö", "business_hours": null, - "phone_number": "010-242 35 20" + "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-23 14:27:00", + "prochain_rdv": "2021-07-01 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 549, - "internal_id": "1198", + "appointment_count": 11, + "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -229,24 +201,24 @@ }, { "departement": "06", - "nom": "Bra Liv Mullsjö vårdcentral", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 13.88589429818079, - "latitude": 57.92107739299626, - "city": "Mullsjö", + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Gunnarsbovägen 35, Mullsjö", + "address": "Postgatan 1, Norrahammar", "business_hours": null, - "phone_number": "010-242 47 00" + "phone_number": "010-242 39 00" }, - "prochain_rdv": "2021-07-01 10:10:00", + "prochain_rdv": "2021-06-22 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, - "internal_id": "1194", + "appointment_count": 3, + "internal_id": "1195", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -273,7 +245,7 @@ "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1688, + "appointment_count": 1684, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 17:50:00", + "prochain_rdv": "2021-06-23 18:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 30, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +385,7 @@ "prochain_rdv": "2021-07-07 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 256, + "appointment_count": 244, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -497,7 +469,7 @@ "prochain_rdv": "2021-06-17 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 110, + "appointment_count": 108, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -735,24 +707,24 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Habo vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", "cp": "00000" }, "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Kärrsvägen 37, Habo", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 48 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1507", + "internal_id": "1184", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,7 +735,35 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.912555900408043, @@ -780,7 +780,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1190", + "internal_id": "1507", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -791,24 +791,24 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Postgatan 1, Norrahammar", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 39 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1494", + "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -819,7 +819,7 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.117167961555985, @@ -836,7 +836,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1195", + "internal_id": "1494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From a21f1f7a9580b9e3c9bf7d44629eaaefde414dd2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:54:49 +0000 Subject: [PATCH 0816/1182] Updating the times for Region 08 --- 08.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/08.json b/08.json index ccea440529a..7e49adbdc49 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:29:37.381270+02:00", + "last_updated": "2021-06-09 21:54:48.835129+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 08:55:00", + "prochain_rdv": "2021-06-17 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 115, + "appointment_count": 94, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 18:20:00", + "prochain_rdv": "2021-06-15 18:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 39, + "appointment_count": 21, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:45:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 172, + "appointment_count": 181, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-17 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 165, + "appointment_count": 158, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2236, + "appointment_count": 2210, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 916, + "appointment_count": 897, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From d4b1747360dcae480a16d026db0cf8aa3a17ce64 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:55:41 +0000 Subject: [PATCH 0817/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index 49ef48f46f3..f6e8665c07c 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:30:29.464211+02:00", + "last_updated": "2021-06-09 21:55:41.239957+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:35:00", + "prochain_rdv": "2021-06-12 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 144, + "appointment_count": 140, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 11:35:00", + "prochain_rdv": "2021-06-10 10:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 162, + "appointment_count": 159, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-11 14:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4004, + "appointment_count": 3997, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 413e2ff80f4aad3a66341c9d0b88767a8de806b3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:56:11 +0000 Subject: [PATCH 0818/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index da916abd339..1c0aa9df693 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:30:57.913162+02:00", + "last_updated": "2021-06-09 21:56:10.697250+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From bc8cd7036a43c29231ed3141878a544d5efc8df7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:56:42 +0000 Subject: [PATCH 0819/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 5eb4b3846be..f4296eac820 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:31:24.159813+02:00", + "last_updated": "2021-06-09 21:56:41.430757+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2987e65db1b790c955dba10d230b2407dd92bd51 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 19:57:15 +0000 Subject: [PATCH 0820/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 76bd47ee48f..909946e56d7 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 13, "total": 19, - "creneaux": 376 + "creneaux": 377 }, "20": { - "disponibles": 5, + "disponibles": 4, "total": 8, - "creneaux": 2863 + "creneaux": 2860 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 19, + "disponibles": 18, "total": 52, - "creneaux": 5444 + "creneaux": 5397 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4774 + "creneaux": 4692 }, "07": { "disponibles": 6, "total": 7, - "creneaux": 4476 + "creneaux": 4462 }, "25": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 94, + "disponibles": 93, "total": 339, - "creneaux": 36897 + "creneaux": 36752 } } \ No newline at end of file From 5f0e97b4c8a1f24eae61fd9668483757c7a72661 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:57:51 +0000 Subject: [PATCH 0821/1182] Updating the times for Region 10 --- 10.json | 80 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/10.json b/10.json index 47996f538cf..4ef5d4917f6 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:44:52.505388+02:00", + "last_updated": "2021-06-09 21:57:50.628879+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:50:00", + "prochain_rdv": "2021-06-22 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,34 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Hammarbyvägen 6", - "business_hours": null, - "phone_number": "0455-73 56 00" - }, - "prochain_rdv": "2021-06-16 11:20:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "575", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -161,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 23, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-17 16:00:00", + "prochain_rdv": "2021-06-24 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 11:35:00", + "prochain_rdv": "2021-06-15 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, + "appointment_count": 4, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 16:10:00", + "prochain_rdv": "2021-06-16 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 51, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:55:00", + "prochain_rdv": "2021-06-19 12:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 68, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -397,6 +369,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Jämjö vårdcentral, Jämjö", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Hammarbyvägen 6", + "business_hours": null, + "phone_number": "0455-73 56 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "575", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Olofströms vårdcentral, Olofström", From 0879ec018aad5c5220caf5cc16f1cb3897b56bb7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:57:55 +0000 Subject: [PATCH 0822/1182] Updating the times for Region 04 --- 04.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/04.json b/04.json index ffe7ea380da..5b62d7eee7c 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:32:40.392023+02:00", + "last_updated": "2021-06-09 21:57:55.007873+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-27 13:45:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 16:05:00", + "prochain_rdv": "2021-06-22 16:10:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 7, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +102,7 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-10 10:45:00", + "prochain_rdv": "2021-06-17 12:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 440, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 09:32:00", + "prochain_rdv": "2021-06-16 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2682, + "appointment_count": 2678, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 371b99a6e9807a280d49d358bfaa03d63355c816 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:58:21 +0000 Subject: [PATCH 0823/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index ca3921863eb..a5ffbbe7639 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:33:05.733672+02:00", + "last_updated": "2021-06-09 21:58:20.985348+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9434045c666603928fd5c40d3a0cb57a905fa495 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:58:37 +0000 Subject: [PATCH 0824/1182] Updating the times for Region 20 --- 20.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/20.json b/20.json index b3516e70cf9..da2c4dcc3db 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:45:39.045791+02:00", + "last_updated": "2021-06-09 21:58:36.723040+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-24 12:44:00", + "prochain_rdv": "2021-06-22 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2624, + "appointment_count": 2622, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:20:00", + "prochain_rdv": "2021-06-23 12:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 191, - "internal_id": "2102", + "appointment_count": 1, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:40:00", + "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, - "internal_id": "2101", + "appointment_count": 189, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:20:00", + "prochain_rdv": "2021-06-28 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, - "internal_id": "2103", + "appointment_count": 36, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,29 +114,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 9, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -144,7 +142,9 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", "nom": "Doktor.se / Falun", From c2f8c37cdb597e8aea5fc12e1998f59cd5831376 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:58:49 +0000 Subject: [PATCH 0825/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 19588986986..030eeb37859 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:33:37.292489+02:00", + "last_updated": "2021-06-09 21:58:48.450110+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0f7592156deaf28d3acb4a28eda88fbbae74f32c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:59:05 +0000 Subject: [PATCH 0826/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 4c6e0e4585c..372f1c1d4db 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:46:10.043090+02:00", + "last_updated": "2021-06-09 21:59:05.468264+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 10e83f4011e7d51139411b61a5eb2bea13af7fa4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:59:19 +0000 Subject: [PATCH 0827/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index f6303fb9ec6..19f79ae5aa4 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:34:13.256654+02:00", + "last_updated": "2021-06-09 21:59:18.569139+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 0ea19ea5c6cb0dbc39f58ebc5613ed5c0fc80d2d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:59:34 +0000 Subject: [PATCH 0828/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 100716ec918..84eec909115 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:46:39.887688+02:00", + "last_updated": "2021-06-09 21:59:34.025483+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6071bd36dce3558d27568a37b0fce6b0aacd17f2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 19:59:59 +0000 Subject: [PATCH 0829/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 73ee2f0ae01..4c5c719b989 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:47:09.560650+02:00", + "last_updated": "2021-06-09 21:59:58.930242+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d4e173f314777b280e3a10dbc58b6d909efe4a8b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:00:30 +0000 Subject: [PATCH 0830/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 2633d457f77..85be796666e 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:47:37.507730+02:00", + "last_updated": "2021-06-09 22:00:30.132827+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8e5b7c760cd7c321223ccc1ed477d4929cd67260 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:04:09 +0000 Subject: [PATCH 0831/1182] Updating the times for Region 06 --- 06.json | 98 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/06.json b/06.json index 25598dde869..cefe7b31296 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:50:59.959074+02:00", + "last_updated": "2021-06-09 22:04:08.403245+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 66, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:39:00", + "prochain_rdv": "2021-06-10 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 46, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:12:00", + "prochain_rdv": "2021-06-23 08:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 170, + "appointment_count": 164, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": "2021-06-29 14:52:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:27:00", + "prochain_rdv": "2021-06-23 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 549, + "appointment_count": 537, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-18 10:00:00", + "prochain_rdv": "2021-06-23 20:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1684, + "appointment_count": 1668, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +301,7 @@ "prochain_rdv": "2021-06-22 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 150, + "appointment_count": 148, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:35:00", + "prochain_rdv": "2021-06-23 18:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 33, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +357,7 @@ "prochain_rdv": "2021-06-23 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 258, + "appointment_count": 255, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 96 01" }, - "prochain_rdv": "2021-06-30 13:57:00", + "prochain_rdv": "2021-06-30 14:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 14, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +413,7 @@ "prochain_rdv": "2021-07-07 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 244, + "appointment_count": 232, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -413,7 +441,7 @@ "prochain_rdv": "2021-06-24 08:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1500, + "appointment_count": 1494, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -441,7 +469,7 @@ "prochain_rdv": "2021-06-22 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 22, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -494,10 +522,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-29 15:20:00", + "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 60, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -733,34 +761,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From 4f4804157db54530145f1477a34124d462c7847d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:04:12 +0000 Subject: [PATCH 0832/1182] Updating the times for Region 22 --- 22.json | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/22.json b/22.json index ab639ee5a53..ac781e3f233 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:38:27.734317+02:00", + "last_updated": "2021-06-09 22:04:11.625513+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 09:52:00", + "prochain_rdv": "2021-06-29 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 804, + "appointment_count": 816, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 13:27:00", + "prochain_rdv": "2021-06-30 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 585, + "appointment_count": 532, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -61,24 +61,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Fränsta", + "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", + "longitude": 17.273690876743526, + "latitude": 63.16638706103348, + "city": "Sollefteå", "cp": "00000" }, "metadata": { - "address": "Mårtensvägen 2, Fränsta", + "address": "Hullsta gård, Storgatan 69", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-11 10:15:00", + "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "926", + "appointment_count": 365, + "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -86,27 +86,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "22", - "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", + "nom": "Vaccinationsenhet Fränsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.273690876743526, - "latitude": 63.16638706103348, - "city": "Sollefteå", + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", "cp": "00000" }, "metadata": { - "address": "Hullsta gård, Storgatan 69", + "address": "Mårtensvägen 2, Fränsta", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 09:10:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 365, - "internal_id": "1325", + "appointment_count": 0, + "internal_id": "926", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,9 +116,7 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 8117d3daff07e52d049d9f418b4217e050948d27 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:04:41 +0000 Subject: [PATCH 0833/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 1aee517da03..258394d98bb 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:38:57.401538+02:00", + "last_updated": "2021-06-09 22:04:41.079441+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0b167d38155d903701088b782cca4d6ace47562c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:07:44 +0000 Subject: [PATCH 0834/1182] Updating the times for Region 08 --- 08.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/08.json b/08.json index 7e49adbdc49..01b4b283ae4 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:54:48.835129+02:00", + "last_updated": "2021-06-09 22:07:43.371720+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0499-209 30" }, - "prochain_rdv": "2021-06-17 10:30:00", + "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 94, + "appointment_count": 101, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-15 18:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 14, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-17 09:40:00", + "prochain_rdv": "2021-06-17 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 158, + "appointment_count": 142, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2210, + "appointment_count": 2156, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-14 11:03:00", + "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 896, + "appointment_count": 880, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 897, + "appointment_count": 906, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From bdb8e4fc1805c55d7ef84550034725e963c93255 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:08:32 +0000 Subject: [PATCH 0835/1182] Updating the times for Region 07 --- 07.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/07.json b/07.json index f6e8665c07c..fb95602c5b7 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:55:41.239957+02:00", + "last_updated": "2021-06-09 22:08:32.385698+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 66, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 10:15:00", + "prochain_rdv": "2021-06-11 08:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 159, + "appointment_count": 152, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 43, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-11 14:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3997, + "appointment_count": 3990, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From b6a78de446a3a091065c2276658463325caf151b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:09:03 +0000 Subject: [PATCH 0836/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 1c0aa9df693..6a985ac764c 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:56:10.697250+02:00", + "last_updated": "2021-06-09 22:09:03.036506+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 29955267de9e8ef156762ec038192d183b034dad Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:09:38 +0000 Subject: [PATCH 0837/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index f4296eac820..b827d627846 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:56:41.430757+02:00", + "last_updated": "2021-06-09 22:09:37.520379+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From ae4e97e9464c8109dd84d86f4b84d10a87f0327f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:10:51 +0000 Subject: [PATCH 0838/1182] Updating the times for Region 04 --- 04.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/04.json b/04.json index 5b62d7eee7c..5cd3d828592 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 21:57:55.007873+02:00", +======= + "last_updated": "2021-06-09 22:10:51.244084+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -133,7 +137,11 @@ "prochain_rdv": "2021-06-16 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", +<<<<<<< Updated upstream "appointment_count": 2678, +======= + "appointment_count": 2676, +>>>>>>> Stashed changes "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From ea535f06b5513d52a8c86b5a959a2b4a25f92ca0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:11:20 +0000 Subject: [PATCH 0839/1182] Updating the times for Region 03 --- 03.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/03.json b/03.json index a5ffbbe7639..250bbf64ab6 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 21:58:20.985348+02:00", +======= + "last_updated": "2021-06-09 22:11:20.188471+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 17f6920f494f1b62316e9ab575093149b429addb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:11:50 +0000 Subject: [PATCH 0840/1182] Updating the times for Region 17 --- 17.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/17.json b/17.json index 030eeb37859..8b16c1de935 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 21:58:48.450110+02:00", +======= + "last_updated": "2021-06-09 22:11:50.170517+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 66fa24fced1f9dd1d5fcacb1c96ae378090aabb2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:12:25 +0000 Subject: [PATCH 0841/1182] Updating the times for Region 24 --- 24.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/24.json b/24.json index 19f79ae5aa4..2ff20a6854e 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 21:59:18.569139+02:00", +======= + "last_updated": "2021-06-09 22:12:24.458801+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From f8f4df6158fa30588458a35de913d69fbb624de3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:16:49 +0000 Subject: [PATCH 0842/1182] Updating the times for Region 22 --- 22.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/22.json b/22.json index ac781e3f233..1bf838e921f 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:04:11.625513+02:00", +======= + "last_updated": "2021-06-09 22:16:49.108033+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +50,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-30 13:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 532, +======= + "prochain_rdv": "2021-06-29 08:39:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 460, +>>>>>>> Stashed changes "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, From 53aafb86a89242b851f37b330d66d45c058a9da7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:17:23 +0000 Subject: [PATCH 0843/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index 258394d98bb..689c36b45db 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:04:41.079441+02:00", +======= + "last_updated": "2021-06-09 22:17:22.610475+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1354159e4f07ae1acdbdba2ceab73b8520c01a9a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:24:41 +0000 Subject: [PATCH 0844/1182] Updating the times for Region 10 --- 10.json | 90 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/10.json b/10.json index 4ef5d4917f6..c54a4dfa7b7 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:57:50.628879+02:00", + "last_updated": "2021-06-09 22:24:41.016944+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:40:00", + "prochain_rdv": "2021-06-22 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 17, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-17 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 109, + "appointment_count": 108, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-16 16:05:00", + "prochain_rdv": "2021-06-24 11:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 13:50:00", + "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 36, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 22, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-15 10:35:00", + "prochain_rdv": "2021-06-23 13:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 1, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 11:55:00", + "prochain_rdv": "2021-06-16 16:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 50, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:30:00", + "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 10:20:00", + "prochain_rdv": "2021-06-23 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 23, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,6 +311,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Sölvesborgs vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Markgatan 30", + "business_hours": null, + "phone_number": "0456-73 13 10" + }, + "prochain_rdv": "2021-06-24 10:15:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "576", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -453,34 +481,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Sölvesborgs vårdcentral", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Markgatan 30", - "business_hours": null, - "phone_number": "0456-73 13 10" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "576", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Trossö vårdcentral, Karlskrona", From d1709cc5a70243276485a83fb95a16283cd57650 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:25:31 +0000 Subject: [PATCH 0845/1182] Updating the times for Region 20 --- 20.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/20.json b/20.json index da2c4dcc3db..d09598fec6a 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:58:36.723040+02:00", + "last_updated": "2021-06-09 22:25:31.433500+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-22 10:48:00", + "prochain_rdv": "2021-07-08 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2622, + "appointment_count": 2616, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,7 +46,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 12:36:00", + "prochain_rdv": "2021-06-28 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 189, + "appointment_count": 187, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 09:40:00", + "prochain_rdv": "2021-06-29 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 34, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 8, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From e797a88deeb49851483367c0a3be41c15819f1d2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:26:02 +0000 Subject: [PATCH 0846/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 372f1c1d4db..1ddff460d30 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:59:05.468264+02:00", + "last_updated": "2021-06-09 22:26:01.652367+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cc9f6a089b7f00f9bf19b67cebe9b9d285fa22ef Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:26:30 +0000 Subject: [PATCH 0847/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 84eec909115..b27c067b76a 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:59:34.025483+02:00", + "last_updated": "2021-06-09 22:26:30.239311+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2046e4141fc4aea8446e96bb27b4cbfa4a91b27c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:26:55 +0000 Subject: [PATCH 0848/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 4c5c719b989..ac145cf5f0a 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 21:59:58.930242+02:00", + "last_updated": "2021-06-09 22:26:55.217667+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c832555e84234a6a7b3eff561a799806dada4b37 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:27:24 +0000 Subject: [PATCH 0849/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 85be796666e..b333c8820a4 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:00:30.132827+02:00", + "last_updated": "2021-06-09 22:27:23.416026+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bdb4b95c4cd33461cba6cd40c6c0dc19ff01ab96 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:31:02 +0000 Subject: [PATCH 0850/1182] Updating the times for Region 06 --- 06.json | 102 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/06.json b/06.json index cefe7b31296..2b9412049dd 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:04:08.403245+02:00", + "last_updated": "2021-06-09 22:31:01.896213+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 67, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 148, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 321, + "appointment_count": 318, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:21:00", + "prochain_rdv": "2021-06-23 08:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 164, + "appointment_count": 156, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-29 14:52:00", + "prochain_rdv": "2021-06-17 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 2, "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-23 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 537, + "appointment_count": 531, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,34 +227,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": "2021-06-22 18:50:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 20:27:00", + "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1668, + "appointment_count": 1684, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:10:00", + "prochain_rdv": "2021-06-22 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 148, + "appointment_count": 144, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:25:00", + "prochain_rdv": "2021-06-23 18:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 30, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-07-07 08:40:00", + "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 232, + "appointment_count": 220, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -441,7 +413,7 @@ "prochain_rdv": "2021-06-24 08:56:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1494, + "appointment_count": 1488, "internal_id": "1225", "vaccine_type": null, "appointment_by_phone_only": false, @@ -466,10 +438,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 10:50:00", + "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 20, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -494,10 +466,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-17 08:50:00", + "prochain_rdv": "2021-06-29 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 106, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -522,7 +494,7 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-29 15:24:00", + "prochain_rdv": "2021-06-29 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 60, @@ -845,6 +817,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", From cc0793abff1ac6ffa2ea5cf953f7c732d5329a3a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:35:00 +0000 Subject: [PATCH 0851/1182] Updating the times for Region 08 --- 08.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/08.json b/08.json index 01b4b283ae4..07da8903dc3 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:07:43.371720+02:00", + "last_updated": "2021-06-09 22:34:59.858374+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-15 18:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, + "appointment_count": 21, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:40:00", + "prochain_rdv": "2021-06-16 13:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 181, + "appointment_count": 188, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-17 09:45:00", + "prochain_rdv": "2021-06-17 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 142, + "appointment_count": 135, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2156, + "appointment_count": 2089, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 906, + "appointment_count": 897, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 10:55:00", + "prochain_rdv": "2021-06-17 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 207, + "appointment_count": 184, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From fc3761166fcd38050ab958cec11cc4fd3a168f4d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:35:47 +0000 Subject: [PATCH 0852/1182] Updating the times for Region 07 --- 07.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/07.json b/07.json index fb95602c5b7..eccb73b20b8 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:08:32.385698+02:00", + "last_updated": "2021-06-09 22:35:47.023372+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:40:00", + "prochain_rdv": "2021-06-12 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 140, + "appointment_count": 138, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 65, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-11 08:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 151, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-11 14:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3990, + "appointment_count": 3983, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 93cc2849e2cb2646fe2138ab73114e70bac8677d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:36:17 +0000 Subject: [PATCH 0853/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 6a985ac764c..24464402e1d 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:09:03.036506+02:00", + "last_updated": "2021-06-09 22:36:16.415234+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From aa2739c40f442d8d57ff89af92159ca0e36314ce Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:36:45 +0000 Subject: [PATCH 0854/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index b827d627846..acfe24d1e22 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:09:37.520379+02:00", + "last_updated": "2021-06-09 22:36:45.239552+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From b2e63bcb635825e994a3d867871cc16744900269 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:37:59 +0000 Subject: [PATCH 0855/1182] Updating the times for Region 04 --- 04.json | 78 ++++++++++++++++++++++++++------------------------------- 1 file changed, 35 insertions(+), 43 deletions(-) diff --git a/04.json b/04.json index 5cd3d828592..766eb98824d 100644 --- a/04.json +++ b/04.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 21:57:55.007873+02:00", -======= - "last_updated": "2021-06-09 22:10:51.244084+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 22:37:59.278585+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -22,7 +18,7 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-16 11:55:00", + "prochain_rdv": "2021-06-19 14:15:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 1, @@ -35,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-27 13:45:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -78,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 16:10:00", + "prochain_rdv": "2021-06-22 16:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 5, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -106,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-17 12:42:00", + "prochain_rdv": "2021-06-10 10:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 440, + "appointment_count": 434, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -134,14 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-16 13:48:00", + "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", -<<<<<<< Updated upstream - "appointment_count": 2678, -======= "appointment_count": 2676, ->>>>>>> Stashed changes "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -265,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 007c6e972905127ae379f3246912e463282483bc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:38:28 +0000 Subject: [PATCH 0856/1182] Updating the times for Region 03 --- 03.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/03.json b/03.json index 250bbf64ab6..65df4518ca0 100644 --- a/03.json +++ b/03.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 21:58:20.985348+02:00", -======= - "last_updated": "2021-06-09 22:11:20.188471+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 22:38:28.080791+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 631eb2ef0bc49d511ead25a711dcb602a8aeef7d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:38:57 +0000 Subject: [PATCH 0857/1182] Updating the times for Region 17 --- 17.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/17.json b/17.json index 8b16c1de935..5a866bf835e 100644 --- a/17.json +++ b/17.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 21:58:48.450110+02:00", -======= - "last_updated": "2021-06-09 22:11:50.170517+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 22:38:56.681660+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From db5af3491a785733429a047968ccf14c0ed1941b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:39:21 +0000 Subject: [PATCH 0858/1182] Updating the times for Region 10 --- 10.json | 112 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/10.json b/10.json index c54a4dfa7b7..4a45d17cf43 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:24:41.016944+02:00", + "last_updated": "2021-06-09 22:39:21.004930+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:50:00", + "prochain_rdv": "2021-06-22 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 17, + "appointment_count": 19, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-17 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 107, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 18, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 13:55:00", + "prochain_rdv": "2021-06-22 14:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 16:10:00", + "prochain_rdv": "2021-06-16 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 51, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,6 +227,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Olofströms vårdcentral, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", + "cp": "00000" + }, + "metadata": { + "address": "Rösjövägen 10", + "business_hours": null, + "phone_number": "0454-73 31 00" + }, + "prochain_rdv": "2021-06-17 10:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "578", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Olofströmskliniken, Olofström", @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:40:00", + "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 34, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-23 09:00:00", + "prochain_rdv": "2021-06-29 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 22, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +329,7 @@ "prochain_rdv": "2021-06-19 12:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 68, + "appointment_count": 67, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -311,34 +339,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Sölvesborgs vårdcentral", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", - "cp": "00000" - }, - "metadata": { - "address": "Markgatan 30", - "business_hours": null, - "phone_number": "0456-73 13 10" - }, - "prochain_rdv": "2021-06-24 10:15:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "576", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Wämö vårdcentral, Karlskrona", @@ -427,24 +427,24 @@ }, { "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Rösjövägen 10", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0454-73 31 00" + "phone_number": "0455-73 56 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "578", + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -455,24 +455,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Sölvesborgs vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Movägen 4", + "address": "Markgatan 30", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0456-73 13 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "585", + "internal_id": "576", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 0578205eecc8eb18bc8b151caea8f255e38836bd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:39:29 +0000 Subject: [PATCH 0859/1182] Updating the times for Region 24 --- 24.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/24.json b/24.json index 2ff20a6854e..8e5ed0eb182 100644 --- a/24.json +++ b/24.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 21:59:18.569139+02:00", -======= - "last_updated": "2021-06-09 22:12:24.458801+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 22:39:28.644600+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 72e9cf12a2db7cc59bca3da47aa74895e20e4d32 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:40:05 +0000 Subject: [PATCH 0860/1182] Updating the times for Region 20 --- 20.json | 60 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/20.json b/20.json index d09598fec6a..8dc55923966 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:25:31.433500+02:00", + "last_updated": "2021-06-09 22:40:04.562691+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-08 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2616, + "appointment_count": 2612, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 17:20:00", + "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2112", + "appointment_count": 187, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:20:00", + "prochain_rdv": "2021-06-28 12:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 187, - "internal_id": "2102", + "appointment_count": 35, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-29 11:20:00", + "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, - "internal_id": "2101", + "appointment_count": 8, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,27 +114,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:20:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, - "internal_id": "2103", + "appointment_count": 0, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -142,9 +144,7 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", "nom": "Doktor.se / Falun", From aa77f558a9ab7943202756f316405f6d74ccbe1a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:40:36 +0000 Subject: [PATCH 0861/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 1ddff460d30..cdd2b1ce806 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:26:01.652367+02:00", + "last_updated": "2021-06-09 22:40:35.819075+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d3fdba83c6c1356059cafe340e7c70823081925a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:41:08 +0000 Subject: [PATCH 0862/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index b27c067b76a..e944bcc6863 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:26:30.239311+02:00", + "last_updated": "2021-06-09 22:41:07.612738+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 366fedd27baca5b3cd3ea7ad3eb24891432d0dd1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:41:36 +0000 Subject: [PATCH 0863/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ac145cf5f0a..d40f85d0d0a 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:26:55.217667+02:00", + "last_updated": "2021-06-09 22:41:36.452324+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 044cea4f7f95fa2ad55e961ff6f3b2dc6a0aed99 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:42:10 +0000 Subject: [PATCH 0864/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index b333c8820a4..cdfe978548d 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:27:23.416026+02:00", + "last_updated": "2021-06-09 22:42:10.228923+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1170e094d8bacd172d2f2b3a69244581ca20a8f0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:43:59 +0000 Subject: [PATCH 0865/1182] Updating the times for Region 22 --- 22.json | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/22.json b/22.json index 1bf838e921f..d5c6f3eac5a 100644 --- a/22.json +++ b/22.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:04:11.625513+02:00", -======= - "last_updated": "2021-06-09 22:16:49.108033+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 22:43:58.687490+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -50,17 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-30 13:36:00", + "prochain_rdv": "2021-06-30 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 532, -======= - "prochain_rdv": "2021-06-29 08:39:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 460, ->>>>>>> Stashed changes + "appointment_count": 342, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, From 92ff470834bbad340dc8ccaabe5f57959bd6a1c7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:44:28 +0000 Subject: [PATCH 0866/1182] Updating the times for Region 19 --- 19.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/19.json b/19.json index 689c36b45db..1e1a53ac281 100644 --- a/19.json +++ b/19.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:04:41.079441+02:00", -======= - "last_updated": "2021-06-09 22:17:22.610475+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 22:44:28.360693+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e39de686e591b5765ffbbe23e8f94afa9f03fe18 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:45:28 +0000 Subject: [PATCH 0867/1182] Updating the times for Region 06 --- 06.json | 116 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/06.json b/06.json index 2b9412049dd..022d08c76aa 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:31:01.896213+02:00", + "last_updated": "2021-06-09 22:45:27.739339+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 10:55:00", + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 66, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 148, + "appointment_count": 152, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-10 13:30:00", + "prochain_rdv": "2021-06-24 10:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 45, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 318, + "appointment_count": 315, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:24:00", + "prochain_rdv": "2021-06-23 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 156, + "appointment_count": 142, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,24 +145,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-17 10:04:00", + "prochain_rdv": "2021-06-23 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1187", + "appointment_count": 528, + "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +173,24 @@ }, { "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "nom": "Bra Liv Mullsjö vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, - "city": "Jönköping", + "longitude": 13.88589429818079, + "latitude": 57.92107739299626, + "city": "Mullsjö", "cp": "00000" }, "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "address": "Gunnarsbovägen 35, Mullsjö", "business_hours": null, - "phone_number": "010-242 35 20" + "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-23 14:36:00", + "prochain_rdv": "2021-07-01 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 531, - "internal_id": "1198", + "appointment_count": 11, + "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +201,24 @@ }, { "departement": "06", - "nom": "Bra Liv Mullsjö vårdcentral", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 13.88589429818079, - "latitude": 57.92107739299626, - "city": "Mullsjö", + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Gunnarsbovägen 35, Mullsjö", + "address": "Postgatan 1, Norrahammar", "business_hours": null, - "phone_number": "010-242 47 00" + "phone_number": "010-242 39 00" }, - "prochain_rdv": "2021-07-01 10:10:00", + "prochain_rdv": "2021-06-22 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, - "internal_id": "1194", + "appointment_count": 3, + "internal_id": "1195", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-22 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 144, + "appointment_count": 140, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,7 +298,7 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:35:00", + "prochain_rdv": "2021-06-14 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 30, @@ -329,7 +329,7 @@ "prochain_rdv": "2021-06-23 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 255, + "appointment_count": 249, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -494,10 +494,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-29 15:20:00", + "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 54, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -735,24 +735,24 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 58 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1507", + "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,7 +763,7 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.912555900408043, @@ -780,7 +780,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1190", + "internal_id": "1507", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -791,24 +791,24 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Postgatan 1, Norrahammar", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 39 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1494", + "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -819,7 +819,7 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.117167961555985, @@ -836,7 +836,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1195", + "internal_id": "1494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From c446d3d0a28518b8374ed5e1f41d9416a55f1864 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:48:52 +0000 Subject: [PATCH 0868/1182] Updating the times for Region 08 --- 08.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/08.json b/08.json index 07da8903dc3..e7085df1f57 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:34:59.858374+02:00", + "last_updated": "2021-06-09 22:48:51.588975+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2089, + "appointment_count": 2087, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 897, + "appointment_count": 906, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From a9bc0e76d1a22b96d8b3c46c584e58d412423062 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:49:42 +0000 Subject: [PATCH 0869/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index eccb73b20b8..038e71dfe44 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:35:47.023372+02:00", + "last_updated": "2021-06-09 22:49:42.147498+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-11 08:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 151, + "appointment_count": 149, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-11 14:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3983, + "appointment_count": 3976, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From d3024a120685de8ddb0b4286f4bd68c3dfed18b3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:50:09 +0000 Subject: [PATCH 0870/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 24464402e1d..f2776176f5f 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:36:16.415234+02:00", + "last_updated": "2021-06-09 22:50:08.659230+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 1795f219b566a901f24dc94823db4acf70e29789 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:50:36 +0000 Subject: [PATCH 0871/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index acfe24d1e22..9ed0ea7252c 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:36:45.239552+02:00", + "last_updated": "2021-06-09 22:50:36.256539+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 81f3217c88812c949c2f018664615dc1f6b11c0a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:52:02 +0000 Subject: [PATCH 0872/1182] Updating the times for Region 04 --- 04.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/04.json b/04.json index 766eb98824d..71a50aadef1 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:37:59.278585+02:00", + "last_updated": "2021-06-09 22:52:01.399785+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-19 10:40:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -74,7 +102,7 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-10 10:39:00", + "prochain_rdv": "2021-06-16 09:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 434, @@ -105,7 +133,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2676, + "appointment_count": 2674, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From fbef974d707a054234b4ef1aa2de87ab7c80fbd0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:52:36 +0000 Subject: [PATCH 0873/1182] Updating the times for Region 03 --- 03.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/03.json b/03.json index 65df4518ca0..571ee109300 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:38:28.080791+02:00", +======= + "last_updated": "2021-06-09 22:52:36.070009+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9dc0574aac2b620d561b5ca1d750d7c8764831ed Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:53:06 +0000 Subject: [PATCH 0874/1182] Updating the times for Region 17 --- 17.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/17.json b/17.json index 5a866bf835e..7db6aad1cb5 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:38:56.681660+02:00", +======= + "last_updated": "2021-06-09 22:53:05.579489+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1f2b2e6bcabe7176b6f2130768800d14a1e78dc7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:53:45 +0000 Subject: [PATCH 0875/1182] Updating the times for Region 24 --- 24.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/24.json b/24.json index 8e5ed0eb182..52a88e49ff8 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:39:28.644600+02:00", +======= + "last_updated": "2021-06-09 22:53:44.607094+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5f105a597b7c99e301532925ed8e7627d9382617 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:57:14 +0000 Subject: [PATCH 0876/1182] Updating the times for Region 10 --- 10.json | 86 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/10.json b/10.json index 4a45d17cf43..a76633db708 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:39:21.004930+02:00", + "last_updated": "2021-06-09 22:57:14.254455+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:30:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 15, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:20:00", + "prochain_rdv": "2021-06-10 16:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 8, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 14:45:00", + "prochain_rdv": "2021-06-23 13:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-16 11:55:00", + "prochain_rdv": "2021-06-22 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 49, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,34 +227,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", - "cp": "00000" - }, - "metadata": { - "address": "Rösjövägen 10", - "business_hours": null, - "phone_number": "0454-73 31 00" - }, - "prochain_rdv": "2021-06-17 10:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "578", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Olofströmskliniken, Olofström", @@ -273,7 +245,7 @@ "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 35, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-29 08:50:00", + "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:50:00", + "prochain_rdv": "2021-06-19 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 67, + "appointment_count": 65, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -425,6 +397,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Olofströms vårdcentral, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", + "cp": "00000" + }, + "metadata": { + "address": "Rösjövägen 10", + "business_hours": null, + "phone_number": "0454-73 31 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "578", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Rödeby vårdcentral, Rödeby", From ad6dba311fde10c80438d08a7ccbfa1e4819471b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:58:04 +0000 Subject: [PATCH 0877/1182] Updating the times for Region 20 --- 20.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/20.json b/20.json index 8dc55923966..88532df848e 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:40:04.562691+02:00", + "last_updated": "2021-06-09 22:58:03.732477+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-08 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2612, + "appointment_count": 2610, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 187, + "appointment_count": 186, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 7, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 401ff7ef04b633c5bbf1feaed7e7d80ebb61e072 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:58:05 +0000 Subject: [PATCH 0878/1182] Updating the times for Region 22 --- 22.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/22.json b/22.json index d5c6f3eac5a..95ef036eabb 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:43:58.687490+02:00", +======= + "last_updated": "2021-06-09 22:58:05.009535+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +50,17 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream "prochain_rdv": "2021-06-30 13:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 342, +======= + "prochain_rdv": "2021-06-30 13:51:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 283, +>>>>>>> Stashed changes "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, From 1d46e580708ecc0c29e5b7677a949bec7f5deb6d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:58:29 +0000 Subject: [PATCH 0879/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index cdd2b1ce806..8b481cbece0 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:40:35.819075+02:00", + "last_updated": "2021-06-09 22:58:29.362114+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4210c0174ee6c1999f78be38014821abefda5485 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:58:48 +0000 Subject: [PATCH 0880/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index 1e1a53ac281..7667910187f 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-09 22:44:28.360693+02:00", +======= + "last_updated": "2021-06-09 22:58:47.980424+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 75755116af10626da4b442fa70ab5c416d1aaa94 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:59:00 +0000 Subject: [PATCH 0881/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index e944bcc6863..3674500002b 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:41:07.612738+02:00", + "last_updated": "2021-06-09 22:59:00.177336+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 586860a8bbe8ea248c3111ace748d1143b7a958f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:59:28 +0000 Subject: [PATCH 0882/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index d40f85d0d0a..fcf40fcdfd9 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:41:36.452324+02:00", + "last_updated": "2021-06-09 22:59:28.353588+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e18b643c9489c950c8fac6da1d8d2a6242e6b56b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 20:59:53 +0000 Subject: [PATCH 0883/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index cdfe978548d..6cf3071d6fc 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:42:10.228923+02:00", + "last_updated": "2021-06-09 22:59:53.347212+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 248e63e97855d607394eca1e570acdbf04644afd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:03:20 +0000 Subject: [PATCH 0884/1182] Updating the times for Region 06 --- 06.json | 84 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/06.json b/06.json index 022d08c76aa..58ec1ef71f0 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:45:27.739339+02:00", + "last_updated": "2021-06-09 23:03:20.126576+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 66, + "appointment_count": 65, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-24 10:39:00", + "prochain_rdv": "2021-06-10 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 47, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:45:00", + "prochain_rdv": "2021-06-23 08:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 142, + "appointment_count": 136, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 528, + "appointment_count": 525, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +199,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": "2021-06-22 18:50:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:15:00", + "prochain_rdv": "2021-06-22 13:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 140, + "appointment_count": 138, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-14 14:00:00", + "prochain_rdv": "2021-06-23 18:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 30, + "appointment_count": 27, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-07-07 08:50:00", + "prochain_rdv": "2021-06-23 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 220, + "appointment_count": 224, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -497,7 +469,7 @@ "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 51, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -845,6 +817,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", From 7d0d5a4d5b80ab4a0852a4e08ea6558e979ef456 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:07:23 +0000 Subject: [PATCH 0885/1182] Updating the times for Region 08 --- 08.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/08.json b/08.json index e7085df1f57..b8cbd47309f 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:48:51.588975+02:00", + "last_updated": "2021-06-09 23:07:22.887082+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:06:00", + "prochain_rdv": "2021-06-10 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2087, + "appointment_count": 2069, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, From 0d495e4e04ae01084356f18e228a5b386392f382 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:08:16 +0000 Subject: [PATCH 0886/1182] Updating the times for Region 07 --- 07.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/07.json b/07.json index 038e71dfe44..a83357fd600 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:49:42.147498+02:00", + "last_updated": "2021-06-09 23:08:15.487400+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-11 08:55:00", + "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 149, + "appointment_count": 150, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-11 14:44:00", + "prochain_rdv": "2021-06-16 13:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3976, + "appointment_count": 3969, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 0781bc9da065ba651e3a99d6fa5286615d4c7f74 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:08:46 +0000 Subject: [PATCH 0887/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index f2776176f5f..55d15886b7a 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:50:08.659230+02:00", + "last_updated": "2021-06-09 23:08:46.109165+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From b8082ac325107f9d40378339fcac13d7ea98fd71 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:09:15 +0000 Subject: [PATCH 0888/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 9ed0ea7252c..3ba753746e7 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:50:36.256539+02:00", + "last_updated": "2021-06-09 23:09:15.350224+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 48eee53c9ac55dffdf0dd9f8f7305683c7250c5b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:10:26 +0000 Subject: [PATCH 0889/1182] Updating the times for Region 04 --- 04.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.json b/04.json index 71a50aadef1..ddb049ce744 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:52:01.399785+02:00", + "last_updated": "2021-06-09 23:10:25.539222+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 09:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 434, + "appointment_count": 436, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, From e42a8d33bc2df3c1c90602c857be7458b66dd9b1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:10:53 +0000 Subject: [PATCH 0890/1182] Updating the times for Region 03 --- 03.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/03.json b/03.json index 571ee109300..2a82888ab8b 100644 --- a/03.json +++ b/03.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:38:28.080791+02:00", -======= - "last_updated": "2021-06-09 22:52:36.070009+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 23:10:52.873708+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 496402ae28d700e1dd13d58d340ba03a597e5992 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:11:18 +0000 Subject: [PATCH 0891/1182] Updating the times for Region 17 --- 17.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/17.json b/17.json index 7db6aad1cb5..168374453af 100644 --- a/17.json +++ b/17.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:38:56.681660+02:00", -======= - "last_updated": "2021-06-09 22:53:05.579489+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 23:11:18.417951+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2fda8ec84be15b58c99e7bd9fd02aed2cdfde30a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:11:50 +0000 Subject: [PATCH 0892/1182] Updating the times for Region 24 --- 24.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/24.json b/24.json index 52a88e49ff8..dfa9b95ebaa 100644 --- a/24.json +++ b/24.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:39:28.644600+02:00", -======= - "last_updated": "2021-06-09 22:53:44.607094+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 23:11:49.687278+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From f3429f3951b4b20f742e0bddcd4077a764d859c5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:16:30 +0000 Subject: [PATCH 0893/1182] Updating the times for Region 22 --- 22.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/22.json b/22.json index 95ef036eabb..90acb61f6d9 100644 --- a/22.json +++ b/22.json @@ -1,9 +1,13 @@ { "version": 1, +<<<<<<< Updated upstream <<<<<<< Updated upstream "last_updated": "2021-06-09 22:43:58.687490+02:00", ======= "last_updated": "2021-06-09 22:58:05.009535+02:00", +>>>>>>> Stashed changes +======= + "last_updated": "2021-06-09 23:16:29.512883+02:00", >>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ @@ -50,6 +54,7 @@ "business_hours": null, "phone_number": "0611-804 00" }, +<<<<<<< Updated upstream <<<<<<< Updated upstream "prochain_rdv": "2021-06-30 13:42:00", "plateforme": "MittVaccin", @@ -60,6 +65,12 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 283, +>>>>>>> Stashed changes +======= + "prochain_rdv": "2021-06-30 13:54:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 238, >>>>>>> Stashed changes "internal_id": "1514", "vaccine_type": null, From 168976c6b889c6b626dafba247610ccfd62482e2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:16:59 +0000 Subject: [PATCH 0894/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index 7667910187f..9a9b75d773b 100644 --- a/19.json +++ b/19.json @@ -1,9 +1,13 @@ { "version": 1, +<<<<<<< Updated upstream <<<<<<< Updated upstream "last_updated": "2021-06-09 22:44:28.360693+02:00", ======= "last_updated": "2021-06-09 22:58:47.980424+02:00", +>>>>>>> Stashed changes +======= + "last_updated": "2021-06-09 23:16:59.204662+02:00", >>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], From c413d4a34b322f61c096dda19500afb16c51aa58 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:24:04 +0000 Subject: [PATCH 0895/1182] Updating the times for Region 10 --- 10.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/10.json b/10.json index a76633db708..df32c0bfed0 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:57:14.254455+02:00", + "last_updated": "2021-06-09 23:24:03.974100+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 37, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 12, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-10 16:20:00", + "prochain_rdv": "2021-06-24 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 8, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 13:55:00", + "prochain_rdv": "2021-06-22 14:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 65, + "appointment_count": 64, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -310,34 +310,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 54 30" - }, - "prochain_rdv": "2021-06-24 13:05:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "581", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ @@ -564,6 +536,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From bc7566be43a5b71d0593c10b4a9a65ecace34b72 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:24:50 +0000 Subject: [PATCH 0896/1182] Updating the times for Region 20 --- 20.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/20.json b/20.json index 88532df848e..885578174af 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:58:03.732477+02:00", + "last_updated": "2021-06-09 23:24:49.527872+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,7 +18,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 10:36:00", + "prochain_rdv": "2021-07-08 09:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2610, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-28 12:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 35, + "appointment_count": 33, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:20:00", + "prochain_rdv": "2021-07-02 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 8c1ad23fe30d93c60d57b88be40dbff9a5fee8aa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:25:19 +0000 Subject: [PATCH 0897/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 8b481cbece0..fedbb761d3a 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:58:29.362114+02:00", + "last_updated": "2021-06-09 23:25:19.120653+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5576ab42b93c836566fca3ad2c513445fb6e1cf7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:25:46 +0000 Subject: [PATCH 0898/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 3674500002b..e7468678618 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:59:00.177336+02:00", + "last_updated": "2021-06-09 23:25:45.780258+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3020d3490d47ad965748e598c0caaf01ecfbf82e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:26:17 +0000 Subject: [PATCH 0899/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index fcf40fcdfd9..2a1f689011e 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:59:28.353588+02:00", + "last_updated": "2021-06-09 23:26:17.224741+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0535afdc6c01f2a3f484c8a7c4f544699ffcb84c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:26:44 +0000 Subject: [PATCH 0900/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 6cf3071d6fc..b4b6ae97a40 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 22:59:53.347212+02:00", + "last_updated": "2021-06-09 23:26:43.936690+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 305f855c295af60352f42f7fd09b918cf957f837 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:30:18 +0000 Subject: [PATCH 0901/1182] Updating the times for Region 06 --- 06.json | 88 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/06.json b/06.json index 58ec1ef71f0..c6c6257bdb2 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:03:20.126576+02:00", + "last_updated": "2021-06-09 23:30:17.649179+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 47, + "appointment_count": 46, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-22 13:00:00", + "prochain_rdv": "2021-06-16 13:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 315, + "appointment_count": 318, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:27:00", + "prochain_rdv": "2021-06-17 17:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 136, + "appointment_count": 140, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 525, + "appointment_count": 510, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,6 +199,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": "2021-06-22 18:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -214,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-18 10:00:00", + "prochain_rdv": "2021-06-23 16:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1684, + "appointment_count": 1680, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:25:00", + "prochain_rdv": "2021-06-22 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 138, + "appointment_count": 142, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:40:00", + "prochain_rdv": "2021-06-23 18:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 27, + "appointment_count": 21, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -410,10 +438,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 11:20:00", + "prochain_rdv": "2021-06-22 11:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 19, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -469,7 +497,7 @@ "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 45, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -817,34 +845,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", From db50ec1bf829030e0700069bae894e809ce620b6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:33:56 +0000 Subject: [PATCH 0902/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index b8cbd47309f..f6cb25a1a44 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:07:22.887082+02:00", + "last_updated": "2021-06-09 23:33:55.764421+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2069, + "appointment_count": 2061, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, From 8cff3253925d9928b887bb616686aba5fc3ee2b4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:34:42 +0000 Subject: [PATCH 0903/1182] Updating the times for Region 07 --- 07.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/07.json b/07.json index a83357fd600..c43e9f30af5 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:08:15.487400+02:00", + "last_updated": "2021-06-09 23:34:41.963246+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-15 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 54, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 43, + "appointment_count": 42, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:44:00", + "prochain_rdv": "2021-06-10 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3969, + "appointment_count": 3976, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 920369492e4fedee7cb1aaf48089083e562d3c0d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:35:10 +0000 Subject: [PATCH 0904/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 55d15886b7a..019e0b7918a 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:08:46.109165+02:00", + "last_updated": "2021-06-09 23:35:10.014716+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From ddd8ff55389627edbb3e3133d89a5eec0a5baa8f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:35:40 +0000 Subject: [PATCH 0905/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 3ba753746e7..7cfeb4f4919 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:09:15.350224+02:00", + "last_updated": "2021-06-09 23:35:40.047191+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 915be45f9dcf1a3569c37f4aa4adccdad44608aa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:36:49 +0000 Subject: [PATCH 0906/1182] Updating the times for Region 04 --- 04.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04.json b/04.json index ddb049ce744..26d57eea719 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:10:25.539222+02:00", + "last_updated": "2021-06-09 23:36:48.791455+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-16 09:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 436, + "appointment_count": 434, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2674, + "appointment_count": 2670, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From a55c5226e8f62b6245b02709db5081ab47930ea7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:37:15 +0000 Subject: [PATCH 0907/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 2a82888ab8b..cab8c49f1a3 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:10:52.873708+02:00", + "last_updated": "2021-06-09 23:37:14.513159+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d8bb4f33be222e38a0ef4345039cb70920559010 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:37:44 +0000 Subject: [PATCH 0908/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 168374453af..d6c48fa6b56 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:11:18.417951+02:00", + "last_updated": "2021-06-09 23:37:43.890255+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From dc4b60c828cc2eb709d8cbba44d997f1bfe6240a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:38:14 +0000 Subject: [PATCH 0909/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index dfa9b95ebaa..1577e30037d 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:11:49.687278+02:00", + "last_updated": "2021-06-09 23:38:14.236481+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 6a798426426bf1901aa8cd1c7f2bfc9e80515735 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:40:18 +0000 Subject: [PATCH 0910/1182] Updating the times for Region 10 --- 10.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/10.json b/10.json index df32c0bfed0..9961e1b1f85 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:24:03.974100+02:00", + "last_updated": "2021-06-09 23:40:18.036632+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 13, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-10 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 25, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 63, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 6fa1dbdbdbf6a7f22f847eb312c0deb992f99018 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:41:05 +0000 Subject: [PATCH 0911/1182] Updating the times for Region 20 --- 20.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/20.json b/20.json index 885578174af..a1c785931b7 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:24:49.527872+02:00", + "last_updated": "2021-06-09 23:41:04.611685+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-08 09:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2610, + "appointment_count": 2609, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-22 11:08:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -49,7 +77,7 @@ "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 186, + "appointment_count": 185, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-02 10:25:00", + "prochain_rdv": "2021-07-01 12:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Doktor.se / Mora", From 89254e9226bf3edff07e6e76be65420b64513dba Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:41:32 +0000 Subject: [PATCH 0912/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index fedbb761d3a..445e250a49c 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:25:19.120653+02:00", + "last_updated": "2021-06-09 23:41:31.669289+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 660a1bb60f6445fdbb20c0aafccf8b92f1ec1d11 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:42:03 +0000 Subject: [PATCH 0913/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index e7468678618..28a2062b0d6 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:25:45.780258+02:00", + "last_updated": "2021-06-09 23:42:02.487661+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bd9e7d6aba9031fcb23b4d96e424212cdfa509b5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:42:31 +0000 Subject: [PATCH 0914/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 2a1f689011e..ad5bd0cdd6a 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:26:17.224741+02:00", + "last_updated": "2021-06-09 23:42:30.844742+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c9a9cb9039ddd9c23ad918abb3a9bb19ace604fd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:42:39 +0000 Subject: [PATCH 0915/1182] Updating the times for Region 22 --- 22.json | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/22.json b/22.json index 90acb61f6d9..d0c2cfa6dff 100644 --- a/22.json +++ b/22.json @@ -1,14 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:43:58.687490+02:00", -======= - "last_updated": "2021-06-09 22:58:05.009535+02:00", ->>>>>>> Stashed changes -======= - "last_updated": "2021-06-09 23:16:29.512883+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 23:42:39.427835+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -54,24 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, -<<<<<<< Updated upstream -<<<<<<< Updated upstream - "prochain_rdv": "2021-06-30 13:42:00", + "prochain_rdv": "2021-06-30 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 342, -======= - "prochain_rdv": "2021-06-30 13:51:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 283, ->>>>>>> Stashed changes -======= - "prochain_rdv": "2021-06-30 13:54:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 238, ->>>>>>> Stashed changes + "appointment_count": 182, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, From 880aaee92f424d75b6b2fdc6263944060b18b7d9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:43:03 +0000 Subject: [PATCH 0916/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index b4b6ae97a40..c55ffe09518 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:26:43.936690+02:00", + "last_updated": "2021-06-09 23:43:02.531528+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 545147ee8eb0829ec7a7f04b4c06dc07581683af Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:43:13 +0000 Subject: [PATCH 0917/1182] Updating the times for Region 19 --- 19.json | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/19.json b/19.json index 9a9b75d773b..115e51b8594 100644 --- a/19.json +++ b/19.json @@ -1,14 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream -<<<<<<< Updated upstream - "last_updated": "2021-06-09 22:44:28.360693+02:00", -======= - "last_updated": "2021-06-09 22:58:47.980424+02:00", ->>>>>>> Stashed changes -======= - "last_updated": "2021-06-09 23:16:59.204662+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-09 23:43:12.564915+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b8885393bcfafbc6f2aeb9711bf2823a862deb25 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:46:26 +0000 Subject: [PATCH 0918/1182] Updating the times for Region 06 --- 06.json | 116 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/06.json b/06.json index c6c6257bdb2..c4191908dea 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:30:17.649179+02:00", + "last_updated": "2021-06-09 23:46:25.704024+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-10 13:30:00", + "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 46, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-16 13:08:00", + "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 318, + "appointment_count": 309, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-17 17:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 140, + "appointment_count": 136, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,24 +145,24 @@ }, { "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-242 35 20" + "phone_number": "010-242 58 00" }, - "prochain_rdv": "2021-06-23 14:39:00", + "prochain_rdv": "2021-06-17 10:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 510, - "internal_id": "1198", + "appointment_count": 2, + "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +173,24 @@ }, { "departement": "06", - "nom": "Bra Liv Mullsjö vårdcentral", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 13.88589429818079, - "latitude": 57.92107739299626, - "city": "Mullsjö", + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Gunnarsbovägen 35, Mullsjö", + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", "business_hours": null, - "phone_number": "010-242 47 00" + "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-07-01 10:10:00", + "prochain_rdv": "2021-06-23 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, - "internal_id": "1194", + "appointment_count": 516, + "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +201,24 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Mullsjö vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", + "longitude": 13.88589429818079, + "latitude": 57.92107739299626, + "city": "Mullsjö", "cp": "00000" }, "metadata": { - "address": "Postgatan 1, Norrahammar", + "address": "Gunnarsbovägen 35, Mullsjö", "business_hours": null, - "phone_number": "010-242 39 00" + "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-22 18:50:00", + "prochain_rdv": "2021-07-01 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1195", + "appointment_count": 11, + "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 16:09:00", + "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1680, + "appointment_count": 1684, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:45:00", + "prochain_rdv": "2021-06-23 18:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 24, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-06-23 10:50:00", + "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 224, + "appointment_count": 220, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -438,10 +438,10 @@ "business_hours": null, "phone_number": "010-244 29 49" }, - "prochain_rdv": "2021-06-22 11:30:00", + "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 19, + "appointment_count": 20, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -497,7 +497,7 @@ "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 48, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -735,24 +735,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1187", + "internal_id": "1507", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,7 +763,7 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.912555900408043, @@ -780,7 +780,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1507", + "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -791,24 +791,24 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Postgatan 1, Norrahammar", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 39 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1190", + "internal_id": "1494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -819,7 +819,7 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.117167961555985, @@ -836,7 +836,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1494", + "internal_id": "1195", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 608c983641751e5a83b87c82fc577f0f9466f22d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:50:09 +0000 Subject: [PATCH 0919/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index f6cb25a1a44..5348c6949a0 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:33:55.764421+02:00", + "last_updated": "2021-06-09 23:50:08.534363+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 880, + "appointment_count": 872, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From 7bad888b5e13b828a97d156d920fe61035e98f4f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:51:02 +0000 Subject: [PATCH 0920/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index c43e9f30af5..03e28fe2f20 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:34:41.963246+02:00", + "last_updated": "2021-06-09 23:51:01.709219+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 138, + "appointment_count": 137, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 41, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, From 1e5f424b9dbbb0a7663b1478daa96e007db1ebba Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:51:30 +0000 Subject: [PATCH 0921/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 019e0b7918a..2d849cfcc7e 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:35:10.014716+02:00", + "last_updated": "2021-06-09 23:51:29.643237+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From be6b692f9f3da962185b833f6700f62fd752d72d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:51:53 +0000 Subject: [PATCH 0922/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 7cfeb4f4919..04fd898a4b2 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:35:40.047191+02:00", + "last_updated": "2021-06-09 23:51:53.354031+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 9103e444a3b2ca88ec40054d056dd63d5d443146 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:53:09 +0000 Subject: [PATCH 0923/1182] Updating the times for Region 04 --- 04.json | 116 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/04.json b/04.json index 26d57eea719..c00a60b14a9 100644 --- a/04.json +++ b/04.json @@ -1,64 +1,8 @@ { "version": 1, - "last_updated": "2021-06-09 23:36:48.791455+02:00", + "last_updated": "2021-06-09 23:53:09.211161+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "04", - "nom": "Vaccina Gnesta, Gnesta", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.326507675212333, - "latitude": 59.03994773439347, - "city": "Gnesta", - "cp": "64630" - }, - "metadata": { - "address": "Dansutvägen 2, 646 30 Gnesta", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-19 14:15:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30004, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-19 10:40:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -133,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2670, + "appointment_count": 2672, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +201,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Gnesta, Gnesta", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" + }, + "metadata": { + "address": "Dansutvägen 2, 646 30 Gnesta", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30004, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From d43fb449c46ff8e7cced8addadc9f723ebac64a4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:53:36 +0000 Subject: [PATCH 0924/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index cab8c49f1a3..ad192fdf295 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:37:14.513159+02:00", + "last_updated": "2021-06-09 23:53:36.032508+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 506a12cb4310203f1f4ad8a657e2b99963735db8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:54:09 +0000 Subject: [PATCH 0925/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index d6c48fa6b56..94d4ff93776 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:37:43.890255+02:00", + "last_updated": "2021-06-09 23:54:08.475750+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1090ce57c3795d44038e617ad036b978540930d3 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 21:57:10 +0000 Subject: [PATCH 0926/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 909946e56d7..c818ea0d088 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 11, "total": 19, - "creneaux": 377 + "creneaux": 357 }, "20": { - "disponibles": 4, + "disponibles": 5, "total": 8, - "creneaux": 2860 + "creneaux": 2835 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5397 + "creneaux": 5232 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4692 + "creneaux": 4496 }, "07": { "disponibles": 6, "total": 7, - "creneaux": 4462 + "creneaux": 4423 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 3, "total": 6, - "creneaux": 3131 + "creneaux": 3111 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 4, + "disponibles": 3, "total": 19, - "creneaux": 1756 + "creneaux": 1363 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 93, + "disponibles": 90, "total": 339, - "creneaux": 36752 + "creneaux": 35894 } } \ No newline at end of file From 82479fba975bd7fe73563354706e5ac8f77ff749 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:57:50 +0000 Subject: [PATCH 0927/1182] Updating the times for Region 10 --- 10.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/10.json b/10.json index 9961e1b1f85..c806fa33bb6 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:40:18.036632+02:00", + "last_updated": "2021-06-09 23:57:50.079000+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 21, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 37, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 14, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:20:00", + "prochain_rdv": "2021-06-24 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,6 +283,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": "2021-06-23 16:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -298,10 +326,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 13:05:00", + "prochain_rdv": "2021-06-19 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 62, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -397,34 +425,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From eb94fabb14d4f6b78fe5715cd798a4576bfab31c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:58:34 +0000 Subject: [PATCH 0928/1182] Updating the times for Region 20 --- 20.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/20.json b/20.json index a1c785931b7..0a66968f47f 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:41:04.611685+02:00", + "last_updated": "2021-06-09 23:58:33.590555+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:52:00", + "prochain_rdv": "2021-07-07 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2609, + "appointment_count": 2611, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-22 11:08:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Doktor.se / Mora", From 5c563fbdc8b4ba6efbbe2f489952a98a5378b7c9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:59:01 +0000 Subject: [PATCH 0929/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 445e250a49c..0cf232d1947 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:41:31.669289+02:00", + "last_updated": "2021-06-09 23:59:00.398710+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2628c4fea963d95c05a20c1534d580be8714c080 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 21:59:27 +0000 Subject: [PATCH 0930/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 28a2062b0d6..c14c1c1008e 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:42:02.487661+02:00", + "last_updated": "2021-06-09 23:59:27.335503+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 46abfcb7cc204f754cc97015fa940455035a16a2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:00:28 +0000 Subject: [PATCH 0931/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ad5bd0cdd6a..15ff4608248 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:42:30.844742+02:00", + "last_updated": "2021-06-10 00:00:27.870601+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 17272c5de294fae0a921087194bb2ed64485c10c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:00:56 +0000 Subject: [PATCH 0932/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index c55ffe09518..ca367c29035 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:43:02.531528+02:00", + "last_updated": "2021-06-10 00:00:56.206386+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 294bb9f22e9ecb3ce3256d7add16fbb9eabad82c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:04:26 +0000 Subject: [PATCH 0933/1182] Updating the times for Region 06 --- 06.json | 100 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/06.json b/06.json index c4191908dea..11ced135e2e 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:46:25.704024+02:00", + "last_updated": "2021-06-10 00:04:25.402715+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 148, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 309, + "appointment_count": 300, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-17 17:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 136, + "appointment_count": 134, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,24 +145,24 @@ }, { "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", "business_hours": null, - "phone_number": "010-242 58 00" + "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-17 10:28:00", + "prochain_rdv": "2021-06-23 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1187", + "appointment_count": 516, + "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -173,24 +173,24 @@ }, { "departement": "06", - "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "nom": "Bra Liv Mullsjö vårdcentral", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.27242696810062, - "latitude": 57.7897280729436, - "city": "Jönköping", + "longitude": 13.88589429818079, + "latitude": 57.92107739299626, + "city": "Mullsjö", "cp": "00000" }, "metadata": { - "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "address": "Gunnarsbovägen 35, Mullsjö", "business_hours": null, - "phone_number": "010-242 35 20" + "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-06-23 14:39:00", + "prochain_rdv": "2021-07-01 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 516, - "internal_id": "1198", + "appointment_count": 22, + "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +201,24 @@ }, { "departement": "06", - "nom": "Bra Liv Mullsjö vårdcentral", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 13.88589429818079, - "latitude": 57.92107739299626, - "city": "Mullsjö", + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Gunnarsbovägen 35, Mullsjö", + "address": "Postgatan 1, Norrahammar", "business_hours": null, - "phone_number": "010-242 47 00" + "phone_number": "010-242 39 00" }, - "prochain_rdv": "2021-07-01 10:10:00", + "prochain_rdv": "2021-06-22 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, - "internal_id": "1194", + "appointment_count": 3, + "internal_id": "1195", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -441,7 +441,7 @@ "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 92, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -497,7 +497,7 @@ "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 45, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -735,24 +735,24 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.912555900408043, - "latitude": 57.370543731867315, - "city": "Vetlanda", + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", "cp": "00000" }, "metadata": { - "address": "Valåkravägen 1, Landsbro", + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", "business_hours": null, - "phone_number": "010-243 25 10" + "phone_number": "010-242 58 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1507", + "internal_id": "1187", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -763,7 +763,7 @@ }, { "departement": "06", - "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.912555900408043, @@ -780,7 +780,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1190", + "internal_id": "1507", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -791,24 +791,24 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", "cp": "00000" }, "metadata": { - "address": "Postgatan 1, Norrahammar", + "address": "Valåkravägen 1, Landsbro", "business_hours": null, - "phone_number": "010-242 39 00" + "phone_number": "010-243 25 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1494", + "internal_id": "1190", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -819,7 +819,7 @@ }, { "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": 14.117167961555985, @@ -836,7 +836,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1195", + "internal_id": "1494", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 3b716782369a2e80bf271d90f16f799256048ddb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:08:03 +0000 Subject: [PATCH 0934/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index 5348c6949a0..f9832740c62 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:50:08.534363+02:00", + "last_updated": "2021-06-10 00:08:02.396734+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2061, + "appointment_count": 2068, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, From 717df8d23b603c00a2da057b3578c1203dfbcef6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:08:53 +0000 Subject: [PATCH 0935/1182] Updating the times for Region 07 --- 07.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/07.json b/07.json index 03e28fe2f20..f00013cf4d0 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:51:01.709219+02:00", + "last_updated": "2021-06-10 00:08:53.008541+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -87,6 +87,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "07", + "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 15.3520379, + "latitude": 57.1664611, + "city": "Uppvidinge", + "cp": "00000" + }, + "metadata": { + "address": "Lillgatan 1, lokal ovan Åseda bilservice AB", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-23 13:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 10, + "internal_id": "1556", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "07", "nom": "Storgatan 71 A, brevid apoteket", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 14:20:00", + "prochain_rdv": "2021-06-10 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 55, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 41, + "appointment_count": 51, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3976, + "appointment_count": 3969, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "07", - "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", - "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", - "location": { - "longitude": 15.3520379, - "latitude": 57.1664611, - "city": "Uppvidinge", - "cp": "00000" - }, - "metadata": { - "address": "Lillgatan 1, lokal ovan Åseda bilservice AB", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1556", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "07", "nom": "Nibehallen", From 5ad200130aa7da9452ba47ec5f95105c36384667 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:09:21 +0000 Subject: [PATCH 0936/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 2d849cfcc7e..4992949a038 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:51:29.643237+02:00", + "last_updated": "2021-06-10 00:09:20.981302+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 981c3db383c6f25e4f567c7de084b9a6cc5c5ec8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:09:55 +0000 Subject: [PATCH 0937/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 04fd898a4b2..948c036cd59 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:51:53.354031+02:00", + "last_updated": "2021-06-10 00:09:54.594455+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3e9323f4ef0dea5f0444e74a852ab6cedf0a1672 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:11:05 +0000 Subject: [PATCH 0938/1182] Updating the times for Region 04 --- 04.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.json b/04.json index c00a60b14a9..d1b8dca307a 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:53:09.211161+02:00", + "last_updated": "2021-06-10 00:11:04.448453+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2672, + "appointment_count": 2670, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 521a597f0bf08140654220bbdd1429e8715c5f5b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:11:34 +0000 Subject: [PATCH 0939/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index ad192fdf295..049ab58e626 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:53:36.032508+02:00", + "last_updated": "2021-06-10 00:11:34.331406+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a88d4fbbec3baa9af9f9439cdd8a5830a0004aa3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:12:04 +0000 Subject: [PATCH 0940/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 94d4ff93776..57cc5434ad4 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:54:08.475750+02:00", + "last_updated": "2021-06-10 00:12:04.259158+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5ee00535825d5d1e6863b25bb32ae237dabb836d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:12:41 +0000 Subject: [PATCH 0941/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 1577e30037d..22bdd4f26f1 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:38:14.236481+02:00", + "last_updated": "2021-06-10 00:12:40.891134+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From f5493e438466a738dac9451508d73fa77b89527e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:17:13 +0000 Subject: [PATCH 0942/1182] Updating the times for Region 22 --- 22.json | 120 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/22.json b/22.json index d0c2cfa6dff..c3c7d4cfb27 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:42:39.427835+02:00", + "last_updated": "2021-06-10 00:17:13.224203+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 13:57:00", + "prochain_rdv": "2021-06-29 11:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 182, + "appointment_count": 210, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Härnösand", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", + "cp": "00000" + }, + "metadata": { + "address": "Södra vägen 3-5", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-23 08:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1376, + "internal_id": "1309", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Nacksta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.255449827674113, + "latitude": 62.392978556952556, + "city": "Sundsvall", + "cp": "85350" + }, + "metadata": { + "address": "Axvägen 15, 853 50 Sundsvall", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-23 08:54:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1554, + "internal_id": "1291", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", @@ -77,7 +133,7 @@ "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 365, + "appointment_count": 403, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Härnösand", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.9298362078272, - "latitude": 62.62440429993568, - "city": "Härnösand", - "cp": "00000" - }, - "metadata": { - "address": "Södra vägen 3-5", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1309", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Junsele", @@ -313,34 +341,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Nacksta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.255449827674113, - "latitude": 62.392978556952556, - "city": "Sundsvall", - "cp": "85350" - }, - "metadata": { - "address": "Axvägen 15, 853 50 Sundsvall", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1291", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Njurunda", From 31a428296b21878d61623f44908b63eb923b5983 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:17:43 +0000 Subject: [PATCH 0943/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 115e51b8594..29700235e5b 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:43:12.564915+02:00", + "last_updated": "2021-06-10 00:17:42.559494+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6111ec1935c06a8f84775ce870756a9c6b556721 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 22:26:26 +0000 Subject: [PATCH 0944/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index c818ea0d088..e955fae4e07 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 11, + "disponibles": 12, "total": 19, - "creneaux": 357 + "creneaux": 361 }, "20": { - "disponibles": 5, + "disponibles": 4, "total": 8, - "creneaux": 2835 + "creneaux": 2836 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5232 + "creneaux": 5298 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4496 + "creneaux": 4503 }, "07": { - "disponibles": 6, + "disponibles": 7, "total": 7, - "creneaux": 4423 + "creneaux": 4437 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 3, "total": 6, - "creneaux": 3111 + "creneaux": 3109 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 3, + "disponibles": 5, "total": 19, - "creneaux": 1363 + "creneaux": 4359 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 90, + "disponibles": 93, "total": 339, - "creneaux": 35894 + "creneaux": 38980 } } \ No newline at end of file From d995dbf3c4e9d03352c2edb723a5fb02ecd90fdc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:27:01 +0000 Subject: [PATCH 0945/1182] Updating the times for Region 10 --- 10.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/10.json b/10.json index c806fa33bb6..8bfd0536dda 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:57:50.079000+02:00", + "last_updated": "2021-06-10 00:27:00.895968+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-24 11:40:00", + "prochain_rdv": "2021-06-16 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, + "appointment_count": 13, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 35, + "appointment_count": 34, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -283,34 +283,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Movägen 4", - "business_hours": null, - "phone_number": "0455-73 56 55" - }, - "prochain_rdv": "2021-06-23 16:05:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "585", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Samariten vårdcentral, Karlshamn", @@ -329,7 +301,7 @@ "prochain_rdv": "2021-06-19 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 64, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -425,6 +397,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Sölvesborgs vårdcentral", From ec22abae8b474b5bd6408f309130883e0116f1b4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:27:49 +0000 Subject: [PATCH 0946/1182] Updating the times for Region 20 --- 20.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/20.json b/20.json index 0a66968f47f..180775044d5 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:58:33.590555+02:00", + "last_updated": "2021-06-10 00:27:49.207381+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:48:00", + "prochain_rdv": "2021-07-08 09:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2611, + "appointment_count": 2608, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:20:00", + "prochain_rdv": "2021-06-30 14:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 185, + "appointment_count": 242, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, From dae49ecc799cdd0de974e9220e1149d3c0cbde5e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:28:18 +0000 Subject: [PATCH 0947/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 0cf232d1947..6df80548fcc 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:59:00.398710+02:00", + "last_updated": "2021-06-10 00:28:17.585269+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 75ae9794df04769e558ae28bc4717cd6c7d5fff6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:28:45 +0000 Subject: [PATCH 0948/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index c14c1c1008e..6cbfc70e60b 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-09 23:59:27.335503+02:00", + "last_updated": "2021-06-10 00:28:44.758667+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 52ca27bb776530488ac0a99c9f674f28a2d099ab Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:29:14 +0000 Subject: [PATCH 0949/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 15ff4608248..195867686c4 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:00:27.870601+02:00", + "last_updated": "2021-06-10 00:29:14.304980+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f9a4f4e38a22e50b20bf4e3ba392ab8d7a374ece Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:29:44 +0000 Subject: [PATCH 0950/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index ca367c29035..2870cb1c5ae 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:00:56.206386+02:00", + "last_updated": "2021-06-10 00:29:43.460183+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 86ebf4173af7b505f052665cd0f60cbc7a2c64ff Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:33:09 +0000 Subject: [PATCH 0951/1182] Updating the times for Region 06 --- 06.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/06.json b/06.json index 11ced135e2e..eca31fa9a02 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:04:25.402715+02:00", + "last_updated": "2021-06-10 00:33:08.733103+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-15 14:09:00", + "prochain_rdv": "2021-06-10 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 46, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 300, + "appointment_count": 309, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-17 17:48:00", + "prochain_rdv": "2021-06-23 08:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 134, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 14:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 516, + "appointment_count": 519, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:40:00", + "prochain_rdv": "2021-06-23 18:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 21, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -385,7 +385,7 @@ "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 220, + "appointment_count": 216, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, From 3b72bc7b40b071af4bef0b59ff406c202ab3bc0d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:36:47 +0000 Subject: [PATCH 0952/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index f9832740c62..acbccd3f0b8 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:08:02.396734+02:00", + "last_updated": "2021-06-10 00:36:46.621207+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 872, + "appointment_count": 848, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From fc886e37965b04db4a6850eea7cbf43a5b1d8dfa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:37:35 +0000 Subject: [PATCH 0953/1182] Updating the times for Region 07 --- 07.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/07.json b/07.json index f00013cf4d0..d50a5543b6e 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:08:53.008541+02:00", + "last_updated": "2021-06-10 00:37:35.265289+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 150, + "appointment_count": 149, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 15:32:00", + "prochain_rdv": "2021-06-10 10:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3969, + "appointment_count": 3976, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 5f0b638ced46e34d1983c6eb56d0349bc846c99b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:38:00 +0000 Subject: [PATCH 0954/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 4992949a038..ff3843637a4 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:09:20.981302+02:00", + "last_updated": "2021-06-10 00:38:00.124423+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 6883b9931d23c98b719d57ecc4de7cb6907c3a51 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:38:27 +0000 Subject: [PATCH 0955/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 948c036cd59..d7240e01769 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:09:54.594455+02:00", + "last_updated": "2021-06-10 00:38:26.985132+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2cb951a76f7d7565ee52c892e56f8d7f7c54a425 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:39:41 +0000 Subject: [PATCH 0956/1182] Updating the times for Region 04 --- 04.json | 60 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/04.json b/04.json index d1b8dca307a..298e6183dfa 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-10 00:11:04.448453+02:00", + "last_updated": "2021-06-10 00:39:40.733401+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-10 18:30:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2670, + "appointment_count": 2674, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 187c7307814b4f3361db1929c6dc067b8eb7a2a3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:40:11 +0000 Subject: [PATCH 0957/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 049ab58e626..7f68dece6f4 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:11:34.331406+02:00", + "last_updated": "2021-06-10 00:40:10.888532+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7400ba29b905a3b6dcb33a7fb894cc85f4be9656 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:40:40 +0000 Subject: [PATCH 0958/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 57cc5434ad4..0dd277a171b 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:12:04.259158+02:00", + "last_updated": "2021-06-10 00:40:40.156303+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0acd507205c134ee2d6c0535ed5874d4ab7d767d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:41:12 +0000 Subject: [PATCH 0959/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 22bdd4f26f1..df1d9b64a70 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:12:40.891134+02:00", + "last_updated": "2021-06-10 00:41:11.282867+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From f0be1e84753470c6d9f3019533afc06e33c887b3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:45:32 +0000 Subject: [PATCH 0960/1182] Updating the times for Region 22 --- 22.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/22.json b/22.json index c3c7d4cfb27..6b172038156 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:17:13.224203+02:00", + "last_updated": "2021-06-10 00:45:31.824610+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-29 11:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 210, + "appointment_count": 224, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-11 10:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Härnösand", @@ -77,7 +105,7 @@ "prochain_rdv": "2021-06-23 08:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1376, + "appointment_count": 1344, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 08:54:00", + "prochain_rdv": "2021-06-23 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1554, + "appointment_count": 1288, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -145,34 +173,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From d31eefa86652ae795fbdf959023c467486a9e271 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:46:01 +0000 Subject: [PATCH 0961/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 29700235e5b..17688c5c5da 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:17:42.559494+02:00", + "last_updated": "2021-06-10 00:46:00.407029+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c2acf02d911229d50a0e282b57515f97aa260449 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 22:58:02 +0000 Subject: [PATCH 0962/1182] Updating the stats --- data/output/stats.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index e955fae4e07..fa1665c7835 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 12, + "disponibles": 11, "total": 19, "creneaux": 361 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2836 + "creneaux": 2890 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5298 + "creneaux": 5303 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4503 + "creneaux": 4479 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4437 + "creneaux": 4443 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 3, + "disponibles": 4, "total": 6, - "creneaux": 3109 + "creneaux": 3114 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 5, + "disponibles": 6, "total": 19, - "creneaux": 4359 + "creneaux": 4089 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 93, + "disponibles": 94, "total": 339, - "creneaux": 38980 + "creneaux": 38756 } } \ No newline at end of file From e0795e39efba5244893a8af5f2a13fcac4a1e584 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:58:31 +0000 Subject: [PATCH 0963/1182] Updating the times for Region 10 --- 10.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/10.json b/10.json index 8bfd0536dda..b194eeb5cc3 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:27:00.895968+02:00", + "last_updated": "2021-06-10 00:58:31.077016+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 35, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 63, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 4e9a1163174b2ff53711f7087ad567e236883165 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:59:20 +0000 Subject: [PATCH 0964/1182] Updating the times for Region 20 --- 20.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/20.json b/20.json index 180775044d5..c9e6e11daa5 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:27:49.207381+02:00", + "last_updated": "2021-06-10 00:59:19.840916+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:52:00", + "prochain_rdv": "2021-07-07 15:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2608, + "appointment_count": 2609, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:25:00", + "prochain_rdv": "2021-06-30 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 242, + "appointment_count": 243, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, From 9d84312ee3f65d4a8c43b80d89557be798e9f191 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 22:59:45 +0000 Subject: [PATCH 0965/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 6df80548fcc..a8fad31b8fe 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:28:17.585269+02:00", + "last_updated": "2021-06-10 00:59:44.971629+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3f73bfe7bc08d8cb4bb9a14b2b3d85aec3b62a24 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:00:17 +0000 Subject: [PATCH 0966/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 6cbfc70e60b..7eaf5125bd3 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:28:44.758667+02:00", + "last_updated": "2021-06-10 01:00:16.704264+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c37ebf72a48a6ee39b0e5ee6da5ab1e230eb4b46 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:00:42 +0000 Subject: [PATCH 0967/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 195867686c4..6df22bdac47 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:29:14.304980+02:00", + "last_updated": "2021-06-10 01:00:41.664474+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c6436d96c40716d688523990e4a0aad47ff830c2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:01:11 +0000 Subject: [PATCH 0968/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 2870cb1c5ae..4a45a9dd09a 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:29:43.460183+02:00", + "last_updated": "2021-06-10 01:01:11.334842+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6331d29dcf3d73b81669c3acdebb5d0aa8ea6590 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:04:35 +0000 Subject: [PATCH 0969/1182] Updating the times for Region 06 --- 06.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/06.json b/06.json index eca31fa9a02..86a4060b5d2 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:33:08.733103+02:00", + "last_updated": "2021-06-10 01:04:34.601168+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 46, + "appointment_count": 45, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:27:00", + "prochain_rdv": "2021-06-17 17:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 134, + "appointment_count": 138, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +199,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": "2021-06-22 18:50:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -385,7 +357,7 @@ "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 216, + "appointment_count": 212, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -845,6 +817,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", From 50a01e231e209ebf39a05df65ad8773ac4de8ebe Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:07:54 +0000 Subject: [PATCH 0970/1182] Updating the times for Region 08 --- 08.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/08.json b/08.json index acbccd3f0b8..ca486390402 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:36:46.621207+02:00", + "last_updated": "2021-06-10 01:07:54.409630+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2068, + "appointment_count": 2060, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 848, + "appointment_count": 840, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From a8d5bf403b93265943d48006c1b94fbf003aeb5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:08:42 +0000 Subject: [PATCH 0971/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index d50a5543b6e..bb16d136a34 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:37:35.265289+02:00", + "last_updated": "2021-06-10 01:08:41.891056+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 65, + "appointment_count": 64, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 10:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3976, + "appointment_count": 3986, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 74eec967956dba72f0a085eb6bd5f3e29e5db110 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:09:13 +0000 Subject: [PATCH 0972/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index ff3843637a4..d8c0685107c 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:38:00.124423+02:00", + "last_updated": "2021-06-10 01:09:13.049221+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 57d44dd6ca6c2b9a079833674e771686b1a18339 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:09:45 +0000 Subject: [PATCH 0973/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index d7240e01769..2cb995477d5 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:38:26.985132+02:00", + "last_updated": "2021-06-10 01:09:45.011121+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3a7d4b6eecac92a2213b9091d95a9c94577a9642 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:10:59 +0000 Subject: [PATCH 0974/1182] Updating the times for Region 04 --- 04.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.json b/04.json index 298e6183dfa..5c4ed3d928f 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:39:40.733401+02:00", + "last_updated": "2021-06-10 01:10:58.759161+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2674, + "appointment_count": 2676, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 6c0fce16cb109ef4a4d47cbdb72887f3ab545d1c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:11:28 +0000 Subject: [PATCH 0975/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 7f68dece6f4..f2463d4f9a9 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:40:10.888532+02:00", + "last_updated": "2021-06-10 01:11:27.747829+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 02e20aaa989e2ab6765a7ea5a40b2b314fcbd336 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:11:55 +0000 Subject: [PATCH 0976/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 0dd277a171b..ec7b9bf5b97 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:40:40.156303+02:00", + "last_updated": "2021-06-10 01:11:55.081946+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ca8ddf5ff397ca77e53a9fb6b3761a94498c32b9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:12:27 +0000 Subject: [PATCH 0977/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index df1d9b64a70..273f3bfa69c 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:41:11.282867+02:00", + "last_updated": "2021-06-10 01:12:26.845196+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 190367eb157f7bfdcdbe38dc8b1f8571afa12f41 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:16:45 +0000 Subject: [PATCH 0978/1182] Updating the times for Region 22 --- 22.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/22.json b/22.json index 6b172038156..04f95f5de95 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:45:31.824610+02:00", + "last_updated": "2021-06-10 01:16:45.211410+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 11:36:00", + "prochain_rdv": "2021-06-30 13:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 224, + "appointment_count": 154, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 08:25:00", + "prochain_rdv": "2021-06-23 08:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1344, + "appointment_count": 1260, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 09:39:00", + "prochain_rdv": "2021-06-23 09:51:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1288, + "appointment_count": 1134, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From 0469ebc4359b75347f7f318cdf2dbedaf7c4289b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:17:15 +0000 Subject: [PATCH 0979/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 17688c5c5da..1f941cd88a8 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:46:00.407029+02:00", + "last_updated": "2021-06-10 01:17:14.859346+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 70fd33474eab74fcd689f303057a6583a1358c13 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 23:26:29 +0000 Subject: [PATCH 0980/1182] Updating the stats --- data/output/stats.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index fa1665c7835..8c23a9b6b49 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -7,7 +7,7 @@ "20": { "disponibles": 4, "total": 8, - "creneaux": 2890 + "creneaux": 2892 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 18, + "disponibles": 17, "total": 52, - "creneaux": 5303 + "creneaux": 5299 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4479 + "creneaux": 4463 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4443 + "creneaux": 4452 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3114 + "creneaux": 3116 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 6, "total": 19, - "creneaux": 4089 + "creneaux": 3781 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 94, + "disponibles": 93, "total": 339, - "creneaux": 38756 + "creneaux": 38441 } } \ No newline at end of file From 3ddd3f197e1ba4070d5e80d478a8033f34244524 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:27:03 +0000 Subject: [PATCH 0981/1182] Updating the times for Region 10 --- 10.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/10.json b/10.json index b194eeb5cc3..ba300aed6f1 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:58:31.077016+02:00", + "last_updated": "2021-06-10 01:27:02.555296+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-16 13:30:00", + "prochain_rdv": "2021-06-24 11:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-22 14:45:00", + "prochain_rdv": "2021-06-23 13:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 1, "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,7 +214,7 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-22 11:30:00", + "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 49, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:55:00", + "prochain_rdv": "2021-06-19 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 62, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 67786c944f2ce496fca41d27bb2e79daf30ee3a1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:27:52 +0000 Subject: [PATCH 0982/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index c9e6e11daa5..d42c93dd6b6 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:59:19.840916+02:00", + "last_updated": "2021-06-10 01:27:51.989747+02:00", "last_scrap": [], "centres_disponibles": [ { From 75aa51f7666d7fa80063077381e72aa037363ef1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:28:19 +0000 Subject: [PATCH 0983/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index a8fad31b8fe..94fe67a0b33 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 00:59:44.971629+02:00", + "last_updated": "2021-06-10 01:28:19.330465+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 13e583c7dc4aaeccfe43fe1af6f86788960b7336 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:28:44 +0000 Subject: [PATCH 0984/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 7eaf5125bd3..36b7cadf3b6 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:00:16.704264+02:00", + "last_updated": "2021-06-10 01:28:44.321845+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 89f6639eb8a5a036fc340e2db3b5803342f954a3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:29:13 +0000 Subject: [PATCH 0985/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 6df22bdac47..f757c9aa4fc 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:00:41.664474+02:00", + "last_updated": "2021-06-10 01:29:13.090564+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3d08cc98563130414d3b816c3991d2e4d95f59b4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:29:41 +0000 Subject: [PATCH 0986/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 4a45a9dd09a..450af445b05 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:01:11.334842+02:00", + "last_updated": "2021-06-10 01:29:40.988544+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8f3eb118480266ba09a583ec91f3cf32f8405da5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:33:05 +0000 Subject: [PATCH 0987/1182] Updating the times for Region 06 --- 06.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/06.json b/06.json index 86a4060b5d2..ff3989e235b 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:04:34.601168+02:00", + "last_updated": "2021-06-10 01:33:04.926538+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:39:00", + "prochain_rdv": "2021-06-23 14:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 519, + "appointment_count": 516, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, From 32c37c547f18a4a706bb5b52c5ae6ab9c5379249 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:36:25 +0000 Subject: [PATCH 0988/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index ca486390402..b0070162bfa 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:07:54.409630+02:00", + "last_updated": "2021-06-10 01:36:25.437044+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 840, + "appointment_count": 824, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From d6b132ace22ccf3aff5ea359ed1b47740e04eeca Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:37:16 +0000 Subject: [PATCH 0989/1182] Updating the times for Region 07 --- 07.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07.json b/07.json index bb16d136a34..173db1e389a 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:08:41.891056+02:00", + "last_updated": "2021-06-10 01:37:16.034375+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 10:32:00", + "prochain_rdv": "2021-06-10 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3986, + "appointment_count": 3983, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 852960d7ee553fca4c45baa9c6ba92c14f83e571 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:37:46 +0000 Subject: [PATCH 0990/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index d8c0685107c..aac66d664e2 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:09:13.049221+02:00", + "last_updated": "2021-06-10 01:37:45.584220+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From aed7ea4c3277660bf256ca6a72e57bbbc966b347 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:38:13 +0000 Subject: [PATCH 0991/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 2cb995477d5..10052521fd2 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:09:45.011121+02:00", + "last_updated": "2021-06-10 01:38:12.498368+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 2e6894a15e2310d434b787fc95219ef494d243bd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:39:28 +0000 Subject: [PATCH 0992/1182] Updating the times for Region 04 --- 04.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04.json b/04.json index 5c4ed3d928f..79b11aed362 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:10:58.759161+02:00", + "last_updated": "2021-06-10 01:39:27.945605+02:00", "last_scrap": [], "centres_disponibles": [ { From 930e5c7a082e76035ee6bf770c9acb2d170e6ab0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:39:57 +0000 Subject: [PATCH 0993/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index f2463d4f9a9..4b79fc335ea 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:11:27.747829+02:00", + "last_updated": "2021-06-10 01:39:57.040873+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c4d44a312c14369f372ff5288ca34c5b9da858b3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:40:25 +0000 Subject: [PATCH 0994/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index ec7b9bf5b97..7672d65355d 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:11:55.081946+02:00", + "last_updated": "2021-06-10 01:40:24.486339+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 8e8703c1e374ce4c83abc5f27eebbd195b7c0332 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:40:55 +0000 Subject: [PATCH 0995/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 273f3bfa69c..361dc371ae2 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:12:26.845196+02:00", + "last_updated": "2021-06-10 01:40:55.362787+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 5aa1ae03c1a47f00fed188e0faf26eec4e57e8d3 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:45:11 +0000 Subject: [PATCH 0996/1182] Updating the times for Region 22 --- 22.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/22.json b/22.json index 04f95f5de95..8179b780a26 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:16:45.211410+02:00", + "last_updated": "2021-06-10 01:45:10.708079+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-30 13:57:00", + "prochain_rdv": "2021-06-29 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 154, + "appointment_count": 210, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-11 10:05:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Härnösand", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 09:51:00", + "prochain_rdv": "2021-06-23 10:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1134, + "appointment_count": 1010, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,6 +145,34 @@ } ], "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 4fab838db2ad9008a58668880db9997485b866d0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:45:39 +0000 Subject: [PATCH 0997/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 1f941cd88a8..da9f78a4afa 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:17:14.859346+02:00", + "last_updated": "2021-06-10 01:45:38.995142+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 25d9c28fef4a651724756aa0295ae2c6e560a189 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Wed, 9 Jun 2021 23:58:28 +0000 Subject: [PATCH 0998/1182] Updating the stats --- data/output/stats.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 8c23a9b6b49..4e377abf2fa 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,7 +2,7 @@ "10": { "disponibles": 11, "total": 19, - "creneaux": 361 + "creneaux": 358 }, "20": { "disponibles": 4, @@ -32,17 +32,17 @@ "06": { "disponibles": 17, "total": 52, - "creneaux": 5299 + "creneaux": 5296 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4463 + "creneaux": 4447 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4452 + "creneaux": 4449 }, "25": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 6, + "disponibles": 5, "total": 19, - "creneaux": 3781 + "creneaux": 3699 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 93, + "disponibles": 92, "total": 339, - "creneaux": 38441 + "creneaux": 38334 } } \ No newline at end of file From 0f3b69685ddb7c3ae471ad139218d4713c242208 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:58:59 +0000 Subject: [PATCH 0999/1182] Updating the times for Region 10 --- 10.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/10.json b/10.json index ba300aed6f1..cf1999e09d3 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:27:02.555296+02:00", + "last_updated": "2021-06-10 01:58:59.325505+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 35, + "appointment_count": 34, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 13:05:00", + "prochain_rdv": "2021-06-19 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 63, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 225ac575ec84afbf314e0b348c8dd73d41bc67b8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Wed, 9 Jun 2021 23:59:44 +0000 Subject: [PATCH 1000/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index d42c93dd6b6..f5aeb183bec 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:27:51.989747+02:00", + "last_updated": "2021-06-10 01:59:44.178226+02:00", "last_scrap": [], "centres_disponibles": [ { From 1b0de778f8bb9a0f341734a311549afe83a79fe0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:00:16 +0000 Subject: [PATCH 1001/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 94fe67a0b33..b2d54fef37f 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:28:19.330465+02:00", + "last_updated": "2021-06-10 02:00:15.716100+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 22541e998f163412040deea05507eb567d5984f8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:00:44 +0000 Subject: [PATCH 1002/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 36b7cadf3b6..6bb90427560 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:28:44.321845+02:00", + "last_updated": "2021-06-10 02:00:43.832125+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From ca63860dba8f38079cce1afe12222dc2138722ba Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:01:13 +0000 Subject: [PATCH 1003/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index f757c9aa4fc..a3c23830d14 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:29:13.090564+02:00", + "last_updated": "2021-06-10 02:01:12.738131+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From af474c04c806248cfb39e98584074e1bde4cabb5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:01:39 +0000 Subject: [PATCH 1004/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 450af445b05..47942116378 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:29:40.988544+02:00", + "last_updated": "2021-06-10 02:01:38.975482+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0a6341624651a236585dbed84cc57372fbe1a9b4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:05:04 +0000 Subject: [PATCH 1005/1182] Updating the times for Region 06 --- 06.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06.json b/06.json index ff3989e235b..d37fa0c43db 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:33:04.926538+02:00", + "last_updated": "2021-06-10 02:05:03.568102+02:00", "last_scrap": [], "centres_disponibles": [ { From d1dd8de3d7b5d5bc48ae918ac86931037991899b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:08:42 +0000 Subject: [PATCH 1006/1182] Updating the times for Region 08 --- 08.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/08.json b/08.json index b0070162bfa..06fc715bd7f 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:36:25.437044+02:00", + "last_updated": "2021-06-10 02:08:41.587945+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 824, + "appointment_count": 840, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, From 7edda17679ca344025efab82b98be8ec7e6fd23f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:09:33 +0000 Subject: [PATCH 1007/1182] Updating the times for Region 07 --- 07.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07.json b/07.json index 173db1e389a..2c0e4ba6412 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:37:16.034375+02:00", + "last_updated": "2021-06-10 02:09:33.021558+02:00", "last_scrap": [], "centres_disponibles": [ { From 5c7e6c03f0075c3ba2d8463e10e0e95ca61c4059 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:09:59 +0000 Subject: [PATCH 1008/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index aac66d664e2..62b7a8714e9 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:37:45.584220+02:00", + "last_updated": "2021-06-10 02:09:58.668802+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From f658548bef463f8578d1e5b45ff192e383a21503 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:10:29 +0000 Subject: [PATCH 1009/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 10052521fd2..5316cb395eb 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:38:12.498368+02:00", + "last_updated": "2021-06-10 02:10:29.398731+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8ecdc79cabae516209d39cf3c7eeda86904e89d4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:11:40 +0000 Subject: [PATCH 1010/1182] Updating the times for Region 04 --- 04.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04.json b/04.json index 79b11aed362..aca748a0a48 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:39:27.945605+02:00", + "last_updated": "2021-06-10 02:11:40.155832+02:00", "last_scrap": [], "centres_disponibles": [ { From 15c6819d13088fb4433612aab4137443b36e9ed8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:12:09 +0000 Subject: [PATCH 1011/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 4b79fc335ea..ea9406c0e85 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:39:57.040873+02:00", + "last_updated": "2021-06-10 02:12:08.491028+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c360930cce2ab89a9703770b2cfc52843802e2f8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:12:38 +0000 Subject: [PATCH 1012/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 7672d65355d..5b5b2fe2f09 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:40:24.486339+02:00", + "last_updated": "2021-06-10 02:12:37.595807+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7a9234b6ce3b68ebbffac2ac88ada2343e0448d7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:13:09 +0000 Subject: [PATCH 1013/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 361dc371ae2..f87d585b8e5 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:40:55.362787+02:00", + "last_updated": "2021-06-10 02:13:08.790956+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8c29b24c7700f17cc4e8f4be3d6d1f187b65e578 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:17:44 +0000 Subject: [PATCH 1014/1182] Updating the times for Region 22 --- 22.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/22.json b/22.json index 8179b780a26..d2fed0036c8 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:45:10.708079+02:00", + "last_updated": "2021-06-10 02:17:44.324295+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-29 11:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 210, + "appointment_count": 224, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 08:45:00", + "prochain_rdv": "2021-06-23 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1260, + "appointment_count": 1232, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,6 +87,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Kramfors", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.771429954085686, + "latitude": 62.929766178980955, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Folkets park, Parkgatan 14", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-14 16:52:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 338, + "internal_id": "1323", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Nacksta", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 10:18:00", + "prochain_rdv": "2021-06-23 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1010, + "appointment_count": 980, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,34 +285,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Kramfors", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.771429954085686, - "latitude": 62.929766178980955, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Folkets park, Parkgatan 14", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1323", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Liden", From 2d07701d53b1da287db5858cdf5e0dff3c5cadd2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 00:18:15 +0000 Subject: [PATCH 1015/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index da9f78a4afa..baf72f4b0d7 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:45:38.995142+02:00", + "last_updated": "2021-06-10 02:18:14.719102+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 45e9e3a101ad7badaec1f5876150e76ba055fdbe Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 01:19:08 +0000 Subject: [PATCH 1016/1182] Updating the stats --- data/output/stats.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 4e377abf2fa..019cc1a3c52 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -37,7 +37,7 @@ "08": { "disponibles": 10, "total": 30, - "creneaux": 4447 + "creneaux": 4463 }, "07": { "disponibles": 7, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 5, + "disponibles": 6, "total": 19, - "creneaux": 3699 + "creneaux": 3993 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 92, + "disponibles": 93, "total": 339, - "creneaux": 38334 + "creneaux": 38644 } } \ No newline at end of file From 3808f82d73fbe023c43acfe858a2ac16a5a9099f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:19:47 +0000 Subject: [PATCH 1017/1182] Updating the times for Region 10 --- 10.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/10.json b/10.json index cf1999e09d3..fe372773110 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:58:59.325505+02:00", + "last_updated": "2021-06-10 03:19:46.731997+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 13, + "appointment_count": 11, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-19 12:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 62, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From e5b4571a2ba3469d9c5b1d1745d6c397d73b0cdb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:20:36 +0000 Subject: [PATCH 1018/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index f5aeb183bec..a043ad9b5ed 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 01:59:44.178226+02:00", + "last_updated": "2021-06-10 03:20:35.626960+02:00", "last_scrap": [], "centres_disponibles": [ { From 0129263b532a9a0c90675853e458a091d6ad3c88 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:21:03 +0000 Subject: [PATCH 1019/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index b2d54fef37f..d7ac12ac768 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:00:15.716100+02:00", + "last_updated": "2021-06-10 03:21:02.716439+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From cb4a0783f6ecafe9b03c403be394ef89785a0e5b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:21:31 +0000 Subject: [PATCH 1020/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 6bb90427560..08388385075 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:00:43.832125+02:00", + "last_updated": "2021-06-10 03:21:31.138318+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b2ddf95b3e5347ce849ac8c57bdf8476e44bb665 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:21:57 +0000 Subject: [PATCH 1021/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index a3c23830d14..ca42981c26a 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:01:12.738131+02:00", + "last_updated": "2021-06-10 03:21:56.847787+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d6a5a4b51c245f9b33bd443bf9c15a8edc2470a1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:22:25 +0000 Subject: [PATCH 1022/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 47942116378..67b75cf18ea 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:01:38.975482+02:00", + "last_updated": "2021-06-10 03:22:24.835255+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 95fbced5f9a8c1c9d21c4555e98eded68b69c904 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:25:48 +0000 Subject: [PATCH 1023/1182] Updating the times for Region 06 --- 06.json | 60 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/06.json b/06.json index d37fa0c43db..081c88d57f3 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:05:03.568102+02:00", + "last_updated": "2021-06-10 03:25:47.396264+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -143,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": "2021-06-11 14:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -357,7 +385,7 @@ "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 212, + "appointment_count": 208, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -705,34 +733,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From 5c010cba579a0d17f75f8e5748e63916ab2f6e26 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:29:26 +0000 Subject: [PATCH 1024/1182] Updating the times for Region 08 --- 08.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/08.json b/08.json index 06fc715bd7f..2ea877dbae0 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:08:41.587945+02:00", + "last_updated": "2021-06-10 03:29:25.991213+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:12:00", + "prochain_rdv": "2021-06-10 15:14:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2060, + "appointment_count": 2035, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, From 13cf6812c9b9f32d8e02769d157422c67490460b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:30:19 +0000 Subject: [PATCH 1025/1182] Updating the times for Region 07 --- 07.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07.json b/07.json index 2c0e4ba6412..0e768b3bac5 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:09:33.021558+02:00", + "last_updated": "2021-06-10 03:30:18.526645+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 149, + "appointment_count": 148, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, From 2316343d2854e980ee1aee50ff254f041235db27 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:30:48 +0000 Subject: [PATCH 1026/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 62b7a8714e9..fbbbd4a6982 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:09:58.668802+02:00", + "last_updated": "2021-06-10 03:30:47.712773+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 313cb4f6ad4a25226d2d43d34c8690fd837b9179 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:31:16 +0000 Subject: [PATCH 1027/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 5316cb395eb..d991ac686c3 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:10:29.398731+02:00", + "last_updated": "2021-06-10 03:31:15.651086+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 9d96a342eb894be6e38e476d1dec998c19fcb77d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:32:26 +0000 Subject: [PATCH 1028/1182] Updating the times for Region 04 --- 04.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/04.json b/04.json index aca748a0a48..62209975ff9 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-10 02:11:40.155832+02:00", + "last_updated": "2021-06-10 03:32:26.016207+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Gnesta, Gnesta", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" + }, + "metadata": { + "address": "Dansutvägen 2, 646 30 Gnesta", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-10 11:20:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30004, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-16 09:06:00", + "prochain_rdv": "2021-06-16 19:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 434, + "appointment_count": 432, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +133,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2676, + "appointment_count": 2678, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,34 +257,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Gnesta, Gnesta", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.326507675212333, - "latitude": 59.03994773439347, - "city": "Gnesta", - "cp": "64630" - }, - "metadata": { - "address": "Dansutvägen 2, 646 30 Gnesta", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30004, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 6d2d09d3af39fdd76827becaf3a732dea6b7587e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:32:56 +0000 Subject: [PATCH 1029/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index ea9406c0e85..6401405d3fe 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:12:08.491028+02:00", + "last_updated": "2021-06-10 03:32:56.030156+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 55ea522ecdd16cc43773a59d9fc3eaca04c121b5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:33:21 +0000 Subject: [PATCH 1030/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 5b5b2fe2f09..de01097602b 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:12:37.595807+02:00", + "last_updated": "2021-06-10 03:33:20.796773+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 28d6594557a32afc4878559f8cffdb287b5e6a00 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:33:51 +0000 Subject: [PATCH 1031/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index f87d585b8e5..ffff97b1f6e 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:13:08.790956+02:00", + "last_updated": "2021-06-10 03:33:50.753217+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 71693479e24853713289d08cd28c985a193611d1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:38:27 +0000 Subject: [PATCH 1032/1182] Updating the times for Region 22 --- 22.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/22.json b/22.json index d2fed0036c8..dd22c6c07a8 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:17:44.324295+02:00", + "last_updated": "2021-06-10 03:38:26.818680+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 09:45:00", + "prochain_rdv": "2021-06-18 15:07:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 816, + "appointment_count": 829, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-29 11:42:00", + "prochain_rdv": "2021-06-11 10:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 224, + "appointment_count": 231, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 08:55:00", + "prochain_rdv": "2021-06-23 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1232, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 16:52:00", + "prochain_rdv": "2021-06-14 17:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 338, + "appointment_count": 312, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 10:24:00", + "prochain_rdv": "2021-06-23 10:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 980, + "appointment_count": 882, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, From 70aaae3852378e47e6be9c54b4eb713ca8d8c844 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 01:38:54 +0000 Subject: [PATCH 1033/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index baf72f4b0d7..b4635e0ae72 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 02:18:14.719102+02:00", + "last_updated": "2021-06-10 03:38:53.938715+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 977648d2bc7c27992f1f0296ec07a9dc5a31b86a Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 02:34:17 +0000 Subject: [PATCH 1034/1182] Updating the stats --- data/output/stats.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 019cc1a3c52..649c0707f07 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,7 +2,7 @@ "10": { "disponibles": 11, "total": 19, - "creneaux": 358 + "creneaux": 355 }, "20": { "disponibles": 4, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 17, + "disponibles": 18, "total": 52, - "creneaux": 5296 + "creneaux": 5294 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 4463 + "creneaux": 4438 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4449 + "creneaux": 4448 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 5, "total": 6, - "creneaux": 3116 + "creneaux": 3117 }, "03": { "disponibles": 0, @@ -82,7 +82,7 @@ "22": { "disponibles": 6, "total": 19, - "creneaux": 3993 + "creneaux": 3889 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 93, + "disponibles": 95, "total": 339, - "creneaux": 38644 + "creneaux": 38510 } } \ No newline at end of file From 1b8d782ebb0c6db4a5ec8e5718586731af671462 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:34:52 +0000 Subject: [PATCH 1035/1182] Updating the times for Region 10 --- 10.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10.json b/10.json index fe372773110..b15515bf8b2 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:19:46.731997+02:00", + "last_updated": "2021-06-10 04:34:52.118418+02:00", "last_scrap": [], "centres_disponibles": [ { From 479d990c643d391c118a8a91c55575891268f8e9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:35:40 +0000 Subject: [PATCH 1036/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index a043ad9b5ed..2ec791dec25 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:20:35.626960+02:00", + "last_updated": "2021-06-10 04:35:40.284057+02:00", "last_scrap": [], "centres_disponibles": [ { From 5fc861718756335ee0417d21d90f3084e15c704c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:36:10 +0000 Subject: [PATCH 1037/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index d7ac12ac768..b9e42e957a1 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:21:02.716439+02:00", + "last_updated": "2021-06-10 04:36:10.068230+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d6b0259e60e76b8f5b8ce0eda384b6f80bacac67 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:36:37 +0000 Subject: [PATCH 1038/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 08388385075..54c4d93ed9b 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:21:31.138318+02:00", + "last_updated": "2021-06-10 04:36:37.261453+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 82af15e27f7a5c0aec6ce77efcc585bee2c62611 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:37:02 +0000 Subject: [PATCH 1039/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index ca42981c26a..c719ae9a9c5 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:21:56.847787+02:00", + "last_updated": "2021-06-10 04:37:01.895016+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3935da17dfa01cafa186360ab3c69583da6dd81c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:37:28 +0000 Subject: [PATCH 1040/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 67b75cf18ea..23fad42c1bc 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:22:24.835255+02:00", + "last_updated": "2021-06-10 04:37:27.535779+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 555cce419fe2699f06ee12f4cdde5afea9d65d7c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:40:51 +0000 Subject: [PATCH 1041/1182] Updating the times for Region 06 --- 06.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/06.json b/06.json index 081c88d57f3..37793ac4604 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:25:47.396264+02:00", + "last_updated": "2021-06-10 04:40:51.017769+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -385,7 +385,7 @@ "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 208, + "appointment_count": 204, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, From eb604838a0144b99b9d462bba5f9a2d76c03b10e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:44:15 +0000 Subject: [PATCH 1042/1182] Updating the times for Region 08 --- 08.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/08.json b/08.json index 2ea877dbae0..688552c3f92 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:29:25.991213+02:00", + "last_updated": "2021-06-10 04:44:14.741760+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:14:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2035, + "appointment_count": 2052, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-16 09:03:00", + "prochain_rdv": "2021-06-16 09:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 840, + "appointment_count": 824, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:09:00", + "prochain_rdv": "2021-06-11 08:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 906, + "appointment_count": 905, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 4eb057de31552f7384ab84b8757a53278f968784 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:45:04 +0000 Subject: [PATCH 1043/1182] Updating the times for Region 07 --- 07.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07.json b/07.json index 0e768b3bac5..9fbbfe905d9 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:30:18.526645+02:00", + "last_updated": "2021-06-10 04:45:03.327808+02:00", "last_scrap": [], "centres_disponibles": [ { From d435acbb9f794905efc9542940fa76700d1a4cf0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:45:31 +0000 Subject: [PATCH 1044/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index fbbbd4a6982..02859621387 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:30:47.712773+02:00", + "last_updated": "2021-06-10 04:45:31.266853+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 37a0d51a1127965f5a0d0edd0f2aa4ecb0b75e40 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:46:01 +0000 Subject: [PATCH 1045/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index d991ac686c3..7298bee16a7 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:31:15.651086+02:00", + "last_updated": "2021-06-10 04:46:00.801828+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 55f8aa3abb1d5db1d1fbd99f427e483088462a83 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:47:10 +0000 Subject: [PATCH 1046/1182] Updating the times for Region 04 --- 04.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04.json b/04.json index 62209975ff9..e095a248504 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:32:26.016207+02:00", + "last_updated": "2021-06-10 04:47:09.943831+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-16 19:45:00", + "prochain_rdv": "2021-06-16 09:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 432, + "appointment_count": 434, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, From 1293781c2a573d1dad93d0aa3a1295503c051b19 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:47:40 +0000 Subject: [PATCH 1047/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 6401405d3fe..a71589886a7 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:32:56.030156+02:00", + "last_updated": "2021-06-10 04:47:39.862946+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 503a159e7c42d4dd5bde4d2e441360220968ce26 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:48:11 +0000 Subject: [PATCH 1048/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index de01097602b..0f292390a8f 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:33:20.796773+02:00", + "last_updated": "2021-06-10 04:48:11.087052+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 14a2b60f3d282ffb41d0a6caa2058ded96ef22aa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:48:43 +0000 Subject: [PATCH 1049/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index ffff97b1f6e..ff850bb3c06 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:33:50.753217+02:00", + "last_updated": "2021-06-10 04:48:43.345622+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 966baaa64384e2be012e6d8f285b5696ab375552 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:53:04 +0000 Subject: [PATCH 1050/1182] Updating the times for Region 22 --- 22.json | 78 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/22.json b/22.json index dd22c6c07a8..a997bc55cfd 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:38:26.818680+02:00", + "last_updated": "2021-06-10 04:53:03.505322+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-18 15:07:00", + "prochain_rdv": "2021-06-29 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 829, + "appointment_count": 816, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-11 10:24:00", + "prochain_rdv": "2021-06-28 08:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 231, + "appointment_count": 308, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-11 10:05:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Härnösand", @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 08:50:00", + "prochain_rdv": "2021-06-23 09:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1232, + "appointment_count": 1106, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 17:06:00", + "prochain_rdv": "2021-06-14 17:13:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 312, + "appointment_count": 299, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 10:39:00", + "prochain_rdv": "2021-06-23 10:54:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 882, + "appointment_count": 714, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ } ], "centres_indisponibles": [ - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From 60dd4f6b6334b133e30e97a661a0a2d9e32b2987 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 02:53:30 +0000 Subject: [PATCH 1051/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index b4635e0ae72..4cb5a220bfe 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 03:38:53.938715+02:00", + "last_updated": "2021-06-10 04:53:29.905209+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 822b24a4cfdba9f6a7f9b0ac692e7bcbfcadfe9b Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 03:20:08 +0000 Subject: [PATCH 1052/1182] Updating the stats --- data/output/stats.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 649c0707f07..299d0845aed 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -32,7 +32,7 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5294 + "creneaux": 5290 }, "08": { "disponibles": 10, @@ -62,7 +62,7 @@ "04": { "disponibles": 5, "total": 6, - "creneaux": 3117 + "creneaux": 3119 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 6, + "disponibles": 7, "total": 19, - "creneaux": 3889 + "creneaux": 3660 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 95, + "disponibles": 96, "total": 339, - "creneaux": 38510 + "creneaux": 38279 } } \ No newline at end of file From e95dab44ac5e82ecbf71d5c2e30b46f487986acf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:20:43 +0000 Subject: [PATCH 1053/1182] Updating the times for Region 10 --- 10.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10.json b/10.json index b15515bf8b2..f7b15982a34 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:34:52.118418+02:00", + "last_updated": "2021-06-10 05:20:42.661989+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-23 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, From f4fd2e0b3c6efc156f61c3a5236a214b05e280f2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:21:25 +0000 Subject: [PATCH 1054/1182] Updating the times for Region 20 --- 20.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20.json b/20.json index 2ec791dec25..fdf0e4692e1 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:35:40.284057+02:00", + "last_updated": "2021-06-10 05:21:24.524971+02:00", "last_scrap": [], "centres_disponibles": [ { From 668f53dd5f8f48795e386b3140954a9041102a66 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:21:51 +0000 Subject: [PATCH 1055/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index b9e42e957a1..a494170c1a9 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:36:10.068230+02:00", + "last_updated": "2021-06-10 05:21:50.879653+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e5170680ab982a7c7aef27d0eab0395ae8bd0603 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:22:20 +0000 Subject: [PATCH 1056/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 54c4d93ed9b..871025b0c35 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:36:37.261453+02:00", + "last_updated": "2021-06-10 05:22:20.126398+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5e3242da62c81f4bfe7a3b94d019c04e6661a01b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:22:54 +0000 Subject: [PATCH 1057/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index c719ae9a9c5..37ac48fc5f6 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:37:01.895016+02:00", + "last_updated": "2021-06-10 05:22:53.950489+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9b17ecd38d2685f2d3ca5c310d45267908c88aa8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:23:25 +0000 Subject: [PATCH 1058/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 23fad42c1bc..e0f2a9c920c 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:37:27.535779+02:00", + "last_updated": "2021-06-10 05:23:25.331850+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5ae7f94d8170b2eeb98e868378391bea56702ded Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:26:49 +0000 Subject: [PATCH 1059/1182] Updating the times for Region 06 --- 06.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/06.json b/06.json index 37793ac4604..a53c4413146 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:40:51.017769+02:00", + "last_updated": "2021-06-10 05:26:48.721922+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-17 17:06:00", + "prochain_rdv": "2021-06-17 17:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 138, + "appointment_count": 136, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-23 14:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 516, + "appointment_count": 513, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-22 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 142, + "appointment_count": 138, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, From 43f89f3bcc1468a5337a64e7e91d35ba5e6cccd4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:30:28 +0000 Subject: [PATCH 1060/1182] Updating the times for Region 08 --- 08.json | 66 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/08.json b/08.json index 688552c3f92..43ff74c3f9b 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:44:14.741760+02:00", + "last_updated": "2021-06-10 05:30:27.672333+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Emmaboda hälsocentral", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 15.536922734414482, - "latitude": 56.63139260693963, - "city": "Emmaboda", - "cp": "00000" - }, - "metadata": { - "address": "Rådhusgatan 12, Emmaboda", - "business_hours": null, - "phone_number": "0471-185 14" - }, - "prochain_rdv": "2021-06-17 10:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 7, - "internal_id": "506", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Hultsfreds hälsocentral", @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-16 09:09:00", + "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 824, + "appointment_count": 832, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-11 08:03:00", + "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 905, + "appointment_count": 897, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -481,6 +453,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Emmaboda hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.536922734414482, + "latitude": 56.63139260693963, + "city": "Emmaboda", + "cp": "00000" + }, + "metadata": { + "address": "Rådhusgatan 12, Emmaboda", + "business_hours": null, + "phone_number": "0471-185 14" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "506", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Gamleby hälsocentral", From 640781e8737b1b7c45f41a4d5d3b39f457728905 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:31:17 +0000 Subject: [PATCH 1061/1182] Updating the times for Region 07 --- 07.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07.json b/07.json index 9fbbfe905d9..102250d0977 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:45:03.327808+02:00", + "last_updated": "2021-06-10 05:31:16.536159+02:00", "last_scrap": [], "centres_disponibles": [ { From 99e57ab84be3dd53c3138bdbc6ad5fc5e9b779ef Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:31:44 +0000 Subject: [PATCH 1062/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 02859621387..194ddaf6b99 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:45:31.266853+02:00", + "last_updated": "2021-06-10 05:31:43.503873+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 79bc67dba384730d40ea95d5c184759858006c1f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:32:14 +0000 Subject: [PATCH 1063/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 7298bee16a7..d92bcab36b5 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:46:00.801828+02:00", + "last_updated": "2021-06-10 05:32:13.460229+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 3ef8753b827fab958be46a85526d74607a5ca61c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:33:26 +0000 Subject: [PATCH 1064/1182] Updating the times for Region 04 --- 04.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04.json b/04.json index e095a248504..16cd8f20927 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:47:09.943831+02:00", + "last_updated": "2021-06-10 05:33:26.242076+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-10 18:30:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": 30003, "vaccine_type": null, "appointment_by_phone_only": false, From 15b9effe49976c08b3bb63fa6efe4f798d742715 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:33:53 +0000 Subject: [PATCH 1065/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index a71589886a7..32d1eff4400 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:47:39.862946+02:00", + "last_updated": "2021-06-10 05:33:53.080185+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e53cfd90c7f7eecd419a6c4995e71818316c3e5d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:34:22 +0000 Subject: [PATCH 1066/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 0f292390a8f..42f98491e28 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:48:11.087052+02:00", + "last_updated": "2021-06-10 05:34:21.506914+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 0fe10518e83986b9e514390a3a599b24d5acad75 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:34:54 +0000 Subject: [PATCH 1067/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index ff850bb3c06..1468662e81b 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:48:43.345622+02:00", + "last_updated": "2021-06-10 05:34:53.621721+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 6575be0d31c88163fa9f2e90a1a7283ad8f2689e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:39:13 +0000 Subject: [PATCH 1068/1182] Updating the times for Region 22 --- 22.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/22.json b/22.json index a997bc55cfd..8b4b0342ae1 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:53:03.505322+02:00", + "last_updated": "2021-06-10 05:39:12.778498+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-28 08:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 308, + "appointment_count": 238, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Fränsta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", - "cp": "00000" - }, - "metadata": { - "address": "Mårtensvägen 2, Fränsta", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-11 10:05:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 14, - "internal_id": "926", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Härnösand", @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 09:25:00", + "prochain_rdv": "2021-06-23 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1106, + "appointment_count": 1022, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-14 17:13:00", + "prochain_rdv": "2021-06-14 18:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 299, + "appointment_count": 195, "internal_id": "1323", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 10:54:00", + "prochain_rdv": "2021-06-23 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 714, + "appointment_count": 224, "internal_id": "1291", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ } ], "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Församlingshemmet Björna", From d60d10a34bf800a26fa8fa9f6637de06ce95a3e9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:39:41 +0000 Subject: [PATCH 1069/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 4cb5a220bfe..f5b3a33bfc6 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 04:53:29.905209+02:00", + "last_updated": "2021-06-10 05:39:41.038233+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 994ec4a2bb32e86a7c2dccd893025ee5067676b1 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 03:58:10 +0000 Subject: [PATCH 1070/1182] Updating the stats --- data/output/stats.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 299d0845aed..e9d87659f7a 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,7 +2,7 @@ "10": { "disponibles": 11, "total": 19, - "creneaux": 355 + "creneaux": 354 }, "20": { "disponibles": 4, @@ -32,12 +32,12 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5290 + "creneaux": 5281 }, "08": { - "disponibles": 10, + "disponibles": 9, "total": 30, - "creneaux": 4438 + "creneaux": 4431 }, "07": { "disponibles": 7, @@ -62,7 +62,7 @@ "04": { "disponibles": 5, "total": 6, - "creneaux": 3119 + "creneaux": 3120 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 7, + "disponibles": 6, "total": 19, - "creneaux": 3660 + "creneaux": 2898 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 96, + "disponibles": 94, "total": 339, - "creneaux": 38279 + "creneaux": 37501 } } \ No newline at end of file From 6a25cac1b6dea51fa44188057f3052cc9faba080 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:58:42 +0000 Subject: [PATCH 1071/1182] Updating the times for Region 10 --- 10.json | 58 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/10.json b/10.json index f7b15982a34..24a3bfe14b8 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:20:42.661989+02:00", + "last_updated": "2021-06-10 05:58:42.122947+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -171,34 +171,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": "2021-06-23 13:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -369,6 +341,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Olofströms vårdcentral, Olofström", From 4729c2b96d9c36238348ca4adc99fcb5754db6c5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:59:27 +0000 Subject: [PATCH 1072/1182] Updating the times for Region 20 --- 20.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/20.json b/20.json index fdf0e4692e1..b0209f52260 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:21:24.524971+02:00", + "last_updated": "2021-06-10 05:59:26.809512+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 10:56:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:20:00", + "prochain_rdv": "2021-06-30 14:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 243, + "appointment_count": 242, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,34 +201,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Doktor.se / Mora", From 9cede71b56b94bd6dd4fb2538f22d0b33e6e088a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 03:59:54 +0000 Subject: [PATCH 1073/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index a494170c1a9..3846398c1b9 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:21:50.879653+02:00", + "last_updated": "2021-06-10 05:59:53.636972+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a38b5c7c81eb968139e58adf09dcd6e98e80993c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:00:20 +0000 Subject: [PATCH 1074/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 871025b0c35..56d137da284 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:22:20.126398+02:00", + "last_updated": "2021-06-10 06:00:19.606537+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 19cfe6d57e90cfd798795e4e4d81d2b06bab21e7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:00:46 +0000 Subject: [PATCH 1075/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 37ac48fc5f6..06472327587 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:22:53.950489+02:00", + "last_updated": "2021-06-10 06:00:45.941650+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From f531eec64ce521880edb5fc495bf7a9dd3427d79 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:01:18 +0000 Subject: [PATCH 1076/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index e0f2a9c920c..909b06ea259 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:23:25.331850+02:00", + "last_updated": "2021-06-10 06:01:17.519952+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 71313365268336bee65c01360ac14045763437f0 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:04:30 +0000 Subject: [PATCH 1077/1182] Updating the times for Region 06 --- 06.json | 78 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/06.json b/06.json index a53c4413146..4c2deaabee4 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:26:48.721922+02:00", + "last_updated": "2021-06-10 06:04:30.344737+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 10:33:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 44, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-22 13:00:00", + "prochain_rdv": "2021-06-10 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 309, + "appointment_count": 312, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-17 17:48:00", + "prochain_rdv": "2021-06-23 08:27:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 136, + "appointment_count": 134, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,34 +143,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.158432109596234, - "latitude": 57.77947881924537, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", - "business_hours": null, - "phone_number": "010-242 58 00" - }, - "prochain_rdv": "2021-06-11 14:20:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1187", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:42:00", + "prochain_rdv": "2021-06-10 09:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 513, + "appointment_count": 510, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +217,7 @@ "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1684, + "appointment_count": 1688, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +245,7 @@ "prochain_rdv": "2021-06-22 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 138, + "appointment_count": 136, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +273,7 @@ "prochain_rdv": "2021-06-23 18:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 18, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -733,6 +705,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", From a52c76d7880b0b0488cfbed13b422ee0d7fa882c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:07:54 +0000 Subject: [PATCH 1078/1182] Updating the times for Region 08 --- 08.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/08.json b/08.json index 43ff74c3f9b..94ba2539ba6 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:30:27.672333+02:00", + "last_updated": "2021-06-10 06:07:53.999875+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0491-283 00" }, - "prochain_rdv": "2021-06-16 10:50:00", + "prochain_rdv": "2021-06-16 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 14, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:14:00", + "prochain_rdv": "2021-06-10 15:02:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2052, + "appointment_count": 2051, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-17 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 184, + "appointment_count": 177, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From 14b887fccb2189427532317069f3502ddf2e0aeb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:08:41 +0000 Subject: [PATCH 1079/1182] Updating the times for Region 07 --- 07.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/07.json b/07.json index 102250d0977..760a919f490 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:31:16.536159+02:00", + "last_updated": "2021-06-10 06:08:40.995287+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 63, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-10 10:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 148, + "appointment_count": 147, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3983, + "appointment_count": 3976, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From e7c603b459fee9e6ef6d84db7ad084aa2cbd540b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:09:10 +0000 Subject: [PATCH 1080/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 194ddaf6b99..5c6ff2b0177 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:31:43.503873+02:00", + "last_updated": "2021-06-10 06:09:09.606120+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c5ce9c4126ac9f11d497950bf73af57ec171fe55 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:09:36 +0000 Subject: [PATCH 1081/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index d92bcab36b5..70338209dda 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:32:13.460229+02:00", + "last_updated": "2021-06-10 06:09:35.896690+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 695ee0f0ee0003f38cd43c44ce6697208ab6cfaa Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:10:51 +0000 Subject: [PATCH 1082/1182] Updating the times for Region 04 --- 04.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/04.json b/04.json index 16cd8f20927..ab1f96a6f8c 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:33:26.242076+02:00", + "last_updated": "2021-06-10 06:10:50.980778+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Strängnäs, Strängnäs", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.01994084720094, - "latitude": 59.3791697143613, - "city": "Strängnäs", - "cp": "64533" - }, - "metadata": { - "address": "Seminarievägen 10A, 645 33 Strängnäs", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-10 18:30:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": 30003, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 09:32:00", + "prochain_rdv": "2021-06-10 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2678, + "appointment_count": 2674, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -257,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", From 30b7d77607bf73ee34117234843591bc6dcd87d6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:11:20 +0000 Subject: [PATCH 1083/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 32d1eff4400..8dce2ca5243 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:33:53.080185+02:00", + "last_updated": "2021-06-10 06:11:20.195738+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From dda28e809f0759b59f31077dba44fd6af2c2af53 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:11:50 +0000 Subject: [PATCH 1084/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 42f98491e28..1a4bb6a82e4 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:34:21.506914+02:00", + "last_updated": "2021-06-10 06:11:49.510068+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From c85abdac17a0796dce0551123d4a9fe054fd47ac Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:12:15 +0000 Subject: [PATCH 1085/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 1468662e81b..de6512512e3 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:34:53.621721+02:00", + "last_updated": "2021-06-10 06:12:15.245224+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c41bd8990b97d2e4a2f3b22681f6d0347378545f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:16:33 +0000 Subject: [PATCH 1086/1182] Updating the times for Region 22 --- 22.json | 124 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/22.json b/22.json index 8b4b0342ae1..d0637e6302b 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:39:12.778498+02:00", + "last_updated": "2021-06-10 06:16:33.097402+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-29 09:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 816, + "appointment_count": 804, "internal_id": "1321", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-28 08:39:00", + "prochain_rdv": "2021-06-28 11:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 238, + "appointment_count": 210, "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 08:55:00", + "prochain_rdv": "2021-06-23 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1022, + "appointment_count": 443, "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, @@ -87,62 +87,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "22", - "nom": "Vaccinationsenhet Kramfors", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.771429954085686, - "latitude": 62.929766178980955, - "city": "Kramfors", - "cp": "00000" - }, - "metadata": { - "address": "Folkets park, Parkgatan 14", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-14 18:09:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 195, - "internal_id": "1323", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "22", - "nom": "Vaccinationsenhet Nacksta", - "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", - "location": { - "longitude": 17.255449827674113, - "latitude": 62.392978556952556, - "city": "Sundsvall", - "cp": "85350" - }, - "metadata": { - "address": "Axvägen 15, 853 50 Sundsvall", - "business_hours": null, - "phone_number": "0611-804 00" - }, - "prochain_rdv": "2021-06-23 13:48:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 224, - "internal_id": "1291", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "22", "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", @@ -285,6 +229,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Kramfors", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.771429954085686, + "latitude": 62.929766178980955, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Folkets park, Parkgatan 14", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1323", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Liden", @@ -341,6 +313,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "22", + "nom": "Vaccinationsenhet Nacksta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.255449827674113, + "latitude": 62.392978556952556, + "city": "Sundsvall", + "cp": "85350" + }, + "metadata": { + "address": "Axvägen 15, 853 50 Sundsvall", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1291", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "22", "nom": "Vaccinationsenhet Njurunda", From fc8f58b94387ec3472bfa6aec6554534f434a253 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:16:59 +0000 Subject: [PATCH 1087/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index f5b3a33bfc6..b40d2c17a1b 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:39:41.038233+02:00", + "last_updated": "2021-06-10 06:16:58.695711+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 5dd77d6c3af60b5b8b5ed886398aa265e901c368 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 04:47:24 +0000 Subject: [PATCH 1088/1182] Updating the stats --- data/output/stats.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index e9d87659f7a..5f1c8220791 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,11 +1,11 @@ { "10": { - "disponibles": 11, + "disponibles": 10, "total": 19, - "creneaux": 354 + "creneaux": 353 }, "20": { - "disponibles": 4, + "disponibles": 5, "total": 8, "creneaux": 2892 }, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 18, + "disponibles": 17, "total": 52, - "creneaux": 5281 + "creneaux": 5275 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 4431 + "creneaux": 4416 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4448 + "creneaux": 4439 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 5, + "disponibles": 4, "total": 6, - "creneaux": 3120 + "creneaux": 3114 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 6, + "disponibles": 4, "total": 19, - "creneaux": 2898 + "creneaux": 1860 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 94, + "disponibles": 90, "total": 339, - "creneaux": 37501 + "creneaux": 36426 } } \ No newline at end of file From 4ee85a9a330b15c866a62aa608d7c0542561f9af Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:47:59 +0000 Subject: [PATCH 1089/1182] Updating the times for Region 10 --- 10.json | 100 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/10.json b/10.json index 24a3bfe14b8..2afd3ea8e79 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:58:42.122947+02:00", + "last_updated": "2021-06-10 06:47:59.259537+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -59,34 +59,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": "2021-06-24 11:40:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 11:35:00", + "prochain_rdv": "2021-06-10 11:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-10 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 11, + "appointment_count": 9, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 10:30:00", + "prochain_rdv": "2021-06-24 15:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -171,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": "2021-06-23 13:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-10 10:20:00", + "prochain_rdv": "2021-06-16 14:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 25, + "appointment_count": 24, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -315,24 +315,24 @@ }, { "departement": "10", - "nom": "Jämjö vårdcentral, Jämjö", + "nom": "Hälsohuset för alla", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.833080809564901, - "latitude": 56.189211017141744, + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Hammarbyvägen 6", + "address": "Västra Vittusgatan 4", "business_hours": null, - "phone_number": "0455-73 56 00" + "phone_number": "0455-35 55 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "575", + "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -343,24 +343,24 @@ }, { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Jämjö vårdcentral, Jämjö", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Hammarbyvägen 6", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0455-73 56 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "592", + "internal_id": "575", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 204645310c33849c0b2468d48ed46a5f2f753f79 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:48:48 +0000 Subject: [PATCH 1090/1182] Updating the times for Region 20 --- 20.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/20.json b/20.json index b0209f52260..8178257e8a9 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:59:26.809512+02:00", + "last_updated": "2021-06-10 06:48:47.609873+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-07 15:48:00", + "prochain_rdv": "2021-06-28 16:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2609, + "appointment_count": 2605, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "20", - "nom": "Doktor.se / Ludvika", - "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": "", - "latitude": "", - "city": "Ludvika", - "cp": "00000" - }, - "metadata": { - "address": "Sporthallen Ludvika, Tingshusgatan 18", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-10 10:56:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2115", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "20", "nom": "Kronans Apotek Malung", @@ -102,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 12:40:00", + "prochain_rdv": "2021-07-05 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 32, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-01 12:20:00", + "prochain_rdv": "2021-07-02 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 6, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, @@ -201,6 +173,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "20", "nom": "Doktor.se / Mora", From 6d7ae91139dbb734a35a649cfa080ad2d2224f16 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:49:16 +0000 Subject: [PATCH 1091/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 3846398c1b9..9991181fd80 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 05:59:53.636972+02:00", + "last_updated": "2021-06-10 06:49:16.063680+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a76b2f4aee5f396c1e39e942e47296a8bffe057e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:49:44 +0000 Subject: [PATCH 1092/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 56d137da284..faaa3cf57e0 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:00:19.606537+02:00", + "last_updated": "2021-06-10 06:49:43.992229+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 6c7b00752edafc5f5db080bf37328bcc1d735ddd Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:50:13 +0000 Subject: [PATCH 1093/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 06472327587..25e83b1c1db 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:00:45.941650+02:00", + "last_updated": "2021-06-10 06:50:12.722831+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 52652116be5736331ed3f402d9f8213ab243a4d4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:50:40 +0000 Subject: [PATCH 1094/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 909b06ea259..5e1cebb51a5 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:01:17.519952+02:00", + "last_updated": "2021-06-10 06:50:40.047509+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2b5e585e66788b8bd3aec6688f7ff34ff14a08b8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:54:02 +0000 Subject: [PATCH 1095/1182] Updating the times for Region 06 --- 06.json | 88 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/06.json b/06.json index 4c2deaabee4..0185a93f646 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:04:30.344737+02:00", + "last_updated": "2021-06-10 06:54:01.967249+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 65, + "appointment_count": 64, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-10 10:33:00", + "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 44, + "appointment_count": 45, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-10 14:24:00", + "prochain_rdv": "2021-06-22 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 312, + "appointment_count": 309, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:27:00", + "prochain_rdv": "2021-06-23 08:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 134, + "appointment_count": 132, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-10 09:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 510, + "appointment_count": 513, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-07-01 10:10:00", + "prochain_rdv": "2021-07-01 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 22, + "appointment_count": 20, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +214,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-18 10:00:00", + "prochain_rdv": "2021-06-23 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1688, + "appointment_count": 1684, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -301,7 +301,7 @@ "prochain_rdv": "2021-06-23 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 249, + "appointment_count": 243, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +357,7 @@ "prochain_rdv": "2021-07-07 08:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 204, + "appointment_count": 188, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,6 +367,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": "2021-06-10 16:36:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -469,7 +497,7 @@ "prochain_rdv": "2021-06-29 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 42, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -1069,34 +1097,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", From d272c512648b2688e7677863e2b43d7990128905 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:57:28 +0000 Subject: [PATCH 1096/1182] Updating the times for Region 08 --- 08.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/08.json b/08.json index 94ba2539ba6..3ec96843b2e 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:07:53.999875+02:00", + "last_updated": "2021-06-10 06:57:27.566778+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0485-491 00" }, - "prochain_rdv": "2021-06-16 13:35:00", + "prochain_rdv": "2021-06-16 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 188, + "appointment_count": 181, "internal_id": "500", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-10 15:02:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2051, + "appointment_count": 2043, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 832, + "appointment_count": 824, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 897, + "appointment_count": 3098, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -245,7 +245,7 @@ "prochain_rdv": "2021-06-17 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 177, + "appointment_count": 184, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From f39c604898b0a6d181e1ba17e45772e6c7279600 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:58:12 +0000 Subject: [PATCH 1097/1182] Updating the times for Region 07 --- 07.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/07.json b/07.json index 760a919f490..dbc21b2e526 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:08:40.995287+02:00", + "last_updated": "2021-06-10 06:58:11.720673+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 137, + "appointment_count": 136, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -133,7 +133,7 @@ "prochain_rdv": "2021-06-10 13:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 55, + "appointment_count": 54, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 51, + "appointment_count": 50, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 15:32:00", + "prochain_rdv": "2021-06-16 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3976, + "appointment_count": 3962, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 2ab2f5f9ae69b5cc88dd44f3bacd6646a61eff40 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:58:40 +0000 Subject: [PATCH 1098/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 5c6ff2b0177..657d44180aa 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:09:09.606120+02:00", + "last_updated": "2021-06-10 06:58:40.247115+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c418226abf4d9554aae417980c4ea68867034222 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 04:59:11 +0000 Subject: [PATCH 1099/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 70338209dda..6b34ab212b6 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:09:35.896690+02:00", + "last_updated": "2021-06-10 06:59:11.158387+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From de0814b4f57390b1ff693b808c184cd43a0026ef Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:00:27 +0000 Subject: [PATCH 1100/1182] Updating the times for Region 04 --- 04.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04.json b/04.json index ab1f96a6f8c..7fd578f5839 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:10:50.980778+02:00", + "last_updated": "2021-06-10 07:00:26.815220+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-16 09:06:00", + "prochain_rdv": "2021-06-19 12:21:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 434, + "appointment_count": 430, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 10:40:00", + "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2674, + "appointment_count": 2676, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 240c25c13e3f9b3429f1a33caae2590ce1be20bf Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 05:23:02 +0000 Subject: [PATCH 1101/1182] Updating the stats --- data/output/stats.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 5f1c8220791..f18aff0995b 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 10, "total": 19, - "creneaux": 353 + "creneaux": 348 }, "20": { - "disponibles": 5, + "disponibles": 4, "total": 8, - "creneaux": 2892 + "creneaux": 2885 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 17, + "disponibles": 18, "total": 52, - "creneaux": 5275 + "creneaux": 5244 }, "08": { "disponibles": 9, "total": 30, - "creneaux": 4416 + "creneaux": 6601 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4439 + "creneaux": 4422 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3114 + "creneaux": 3112 }, "03": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 90, "total": 339, - "creneaux": 36426 + "creneaux": 38549 } } \ No newline at end of file From a71f2a790945e7a2fd5a886cd1b108080ae07200 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:23:36 +0000 Subject: [PATCH 1102/1182] Updating the times for Region 10 --- 10.json | 140 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/10.json b/10.json index 2afd3ea8e79..26a349678a8 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:47:59.259537+02:00", + "last_updated": "2021-06-10 07:23:35.512361+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-17 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 108, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 11:55:00", + "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 36, + "appointment_count": 37, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:40:00", + "prochain_rdv": "2021-06-10 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 4, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,34 +143,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": "2021-06-23 13:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-23 10:35:00", + "prochain_rdv": "2021-06-16 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 49, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:30:00", + "prochain_rdv": "2021-06-22 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 34, + "appointment_count": 29, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-16 14:00:00", + "prochain_rdv": "2021-06-23 09:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 24, + "appointment_count": 23, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +242,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 12:55:00", + "prochain_rdv": "2021-06-19 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 58, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -282,6 +254,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": "2021-06-16 09:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -371,24 +371,24 @@ }, { "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Rösjövägen 10", + "address": "Kungsgatan 44", "business_hours": null, - "phone_number": "0454-73 31 00" + "phone_number": "0454-395 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "578", + "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -399,24 +399,24 @@ }, { "departement": "10", - "nom": "Rödeby vårdcentral, Rödeby", + "nom": "Olofströms vårdcentral, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.616385809870739, - "latitude": 56.261383044380345, - "city": "Karlskrona", + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", "cp": "00000" }, "metadata": { - "address": "Movägen 4", + "address": "Rösjövägen 10", "business_hours": null, - "phone_number": "0455-73 56 55" + "phone_number": "0454-73 31 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "585", + "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -427,24 +427,24 @@ }, { "departement": "10", - "nom": "Sölvesborgs vårdcentral", + "nom": "Rödeby vårdcentral, Rödeby", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.583232678821236, - "latitude": 56.05609832639761, - "city": "Sölvesborg", + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Markgatan 30", + "address": "Movägen 4", "business_hours": null, - "phone_number": "0456-73 13 10" + "phone_number": "0455-73 56 55" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "576", + "internal_id": "585", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -455,24 +455,24 @@ }, { "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", + "nom": "Sölvesborgs vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", "cp": "00000" }, "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", + "address": "Markgatan 30", "business_hours": null, - "phone_number": "0455-73 57 55" + "phone_number": "0456-73 13 10" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "586", + "internal_id": "576", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From 2acedea6a6e2d3652548d8466d6cdc5822c8c2bc Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:24:26 +0000 Subject: [PATCH 1103/1182] Updating the times for Region 20 --- 20.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/20.json b/20.json index 8178257e8a9..f619220093f 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:48:47.609873+02:00", + "last_updated": "2021-06-10 07:24:25.595025+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 16:32:00", + "prochain_rdv": "2021-07-08 09:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2605, + "appointment_count": 2600, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:25:00", + "prochain_rdv": "2021-06-17 11:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 242, + "appointment_count": 243, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 10:20:00", + "prochain_rdv": "2021-06-28 12:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, + "appointment_count": 33, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, From b9656b1c020767ab10fff376bc727e5cd9f001ad Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:24:55 +0000 Subject: [PATCH 1104/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 9991181fd80..d1bca016911 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:49:16.063680+02:00", + "last_updated": "2021-06-10 07:24:54.968342+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 92d86af3c7675248bb046e3e0e232674b3f548cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:25:23 +0000 Subject: [PATCH 1105/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index faaa3cf57e0..837ae0b6c1a 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:49:43.992229+02:00", + "last_updated": "2021-06-10 07:25:23.194991+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 97e367b8ac7060509b32484f1db1993be9dd2e5f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:25:50 +0000 Subject: [PATCH 1106/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 25e83b1c1db..19f8c40e78f 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:50:12.722831+02:00", + "last_updated": "2021-06-10 07:25:49.686045+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 96d71786d170d80f334ac2c84d6289ba924638a4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:26:18 +0000 Subject: [PATCH 1107/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 5e1cebb51a5..87a86d42fa0 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:50:40.047509+02:00", + "last_updated": "2021-06-10 07:26:18.344938+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 7859c75274adde301e504b374c86345969c893c6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:29:33 +0000 Subject: [PATCH 1108/1182] Updating the times for Region 06 --- 06.json | 154 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 77 insertions(+), 77 deletions(-) diff --git a/06.json b/06.json index 0185a93f646..bb7d64b6310 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:54:01.967249+02:00", + "last_updated": "2021-06-10 07:29:32.949900+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 65, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,6 +31,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Bankeryd vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.126404129292839, + "latitude": 57.862036664557394, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Sjöåkravägen 18, Bankeryd", + "business_hours": null, + "phone_number": "010-242 38 00" + }, + "prochain_rdv": "2021-06-16 11:08:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1175", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Bodafors vårdcentral (åldersgrupp eller riksgrupp)", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-22 17:20:00", + "prochain_rdv": "2021-06-16 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 148, + "appointment_count": 152, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +102,10 @@ "business_hours": null, "phone_number": "010-243 59 25" }, - "prochain_rdv": "2021-06-15 14:09:00", + "prochain_rdv": "2021-06-24 10:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 43, "internal_id": "1179", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +130,7 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-22 13:00:00", + "prochain_rdv": "2021-06-10 14:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 309, @@ -133,7 +161,7 @@ "prochain_rdv": "2021-06-23 08:57:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 132, + "appointment_count": 126, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-10 09:57:00", + "prochain_rdv": "2021-06-23 14:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 513, + "appointment_count": 507, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +214,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-07-01 10:20:00", + "prochain_rdv": "2021-07-01 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 18, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 13:15:00", + "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1684, + "appointment_count": 1688, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +270,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:10:00", + "prochain_rdv": "2021-06-22 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 136, + "appointment_count": 132, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,7 +298,7 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:45:00", + "prochain_rdv": "2021-06-22 19:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 18, @@ -301,7 +329,7 @@ "prochain_rdv": "2021-06-23 10:04:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 243, + "appointment_count": 246, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -367,34 +395,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": "2021-06-10 16:36:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -441,7 +441,7 @@ "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 92, + "appointment_count": 88, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -494,10 +494,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-29 15:24:00", + "prochain_rdv": "2021-06-24 13:52:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 42, + "appointment_count": 45, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -537,34 +537,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Bankeryd vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.126404129292839, - "latitude": 57.862036664557394, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Sjöåkravägen 18, Bankeryd", - "business_hours": null, - "phone_number": "010-242 38 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1175", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Bodafors vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1097,6 +1069,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", From d609ff7ffcff17f98f98f552c6a503dc71483f78 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:33:10 +0000 Subject: [PATCH 1109/1182] Updating the times for Region 08 --- 08.json | 68 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/08.json b/08.json index 3ec96843b2e..dd0c2946076 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:57:27.566778+02:00", + "last_updated": "2021-06-10 07:33:10.171819+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-16 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, + "appointment_count": 7, "internal_id": "519", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +143,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": "2021-06-15 13:36:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 8, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Vaccinationscentral covid-19 Kalmar", @@ -158,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:02:00", + "prochain_rdv": "2021-06-10 15:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2043, + "appointment_count": 2001, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -189,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 824, + "appointment_count": 816, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +245,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3098, + "appointment_count": 4118, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -789,34 +817,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", - "cp": "00000" - }, - "metadata": { - "address": "Villagatan 4, Borgholm", - "business_hours": null, - "phone_number": "0480-844 44" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2056", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Virserums läkarhus", From 1b5e7db5e6f79a32a3307ef8056bfbaff7219142 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:33:56 +0000 Subject: [PATCH 1110/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index dbc21b2e526..92c111be7db 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:58:11.720673+02:00", + "last_updated": "2021-06-10 07:33:56.280419+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 136, + "appointment_count": 135, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-15 09:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 62, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 10:25:00", + "prochain_rdv": "2021-06-11 09:35:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 147, + "appointment_count": 145, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 50, + "appointment_count": 49, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:48:00", + "prochain_rdv": "2021-06-10 11:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3962, + "appointment_count": 3955, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 855a3735a00b8bcfd6475f98ccb6a6876f751548 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:34:27 +0000 Subject: [PATCH 1111/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 657d44180aa..497d34f82e5 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:58:40.247115+02:00", + "last_updated": "2021-06-10 07:34:26.850365+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 81b62f87046a131ca4d8d18091780e8bb4a04351 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:34:56 +0000 Subject: [PATCH 1112/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 6b34ab212b6..c3a2e0b7200 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:59:11.158387+02:00", + "last_updated": "2021-06-10 07:34:55.880962+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 6662aab3a94401e84719d57c20fde67048d0daee Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:36:11 +0000 Subject: [PATCH 1113/1182] Updating the times for Region 04 --- 04.json | 62 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/04.json b/04.json index 7fd578f5839..07396f03972 100644 --- a/04.json +++ b/04.json @@ -1,36 +1,8 @@ { "version": 1, - "last_updated": "2021-06-10 07:00:26.815220+02:00", + "last_updated": "2021-06-10 07:36:10.765963+02:00", "last_scrap": [], "centres_disponibles": [ - { - "departement": "04", - "nom": "Vaccina Gnesta, Gnesta", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.326507675212333, - "latitude": 59.03994773439347, - "city": "Gnesta", - "cp": "64630" - }, - "metadata": { - "address": "Dansutvägen 2, 646 30 Gnesta", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": "2021-06-10 11:20:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30004, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -49,7 +21,7 @@ "prochain_rdv": "2021-06-22 16:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 5, + "appointment_count": 4, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +77,7 @@ "prochain_rdv": "2021-06-10 09:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2676, + "appointment_count": 2674, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, @@ -229,6 +201,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "04", + "nom": "Vaccina Gnesta, Gnesta", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" + }, + "metadata": { + "address": "Dansutvägen 2, 646 30 Gnesta", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30004, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From 28995766ec732abf0676f00ed9b359e7cca4cecb Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:36:38 +0000 Subject: [PATCH 1114/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 8dce2ca5243..aa07e931d6a 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:11:20.195738+02:00", + "last_updated": "2021-06-10 07:36:37.558786+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2d20659493516c25f2fb055b9aa70ea1adef97c1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:37:07 +0000 Subject: [PATCH 1115/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 1a4bb6a82e4..0084ab98c25 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:11:49.510068+02:00", + "last_updated": "2021-06-10 07:37:07.309654+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d808336a002f780df49342e19c20f41015068647 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:37:39 +0000 Subject: [PATCH 1116/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index de6512512e3..bbbd1350465 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:12:15.245224+02:00", + "last_updated": "2021-06-10 07:37:39.181453+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From c47baac41a589606428138933cbb48cad4ab87f8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:42:20 +0000 Subject: [PATCH 1117/1182] Updating the times for Region 22 --- 22.json | 92 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/22.json b/22.json index d0637e6302b..ec1a76c409b 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:16:33.097402+02:00", + "last_updated": "2021-06-10 07:42:19.893253+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -33,24 +33,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Curlinghallen Skyttis", + "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 18.73309939643111, - "latitude": 63.29646278008092, - "city": "Örnsköldsvik", + "longitude": 17.273690876743526, + "latitude": 63.16638706103348, + "city": "Sollefteå", "cp": "00000" }, "metadata": { - "address": "Valhallavägen 20, Örnsköldsvik", + "address": "Hullsta gård, Storgatan 69", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-28 11:18:00", + "prochain_rdv": "2021-06-10 09:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 210, - "internal_id": "1514", + "appointment_count": 403, + "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -58,27 +58,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "22", - "nom": "Vaccinationsenhet Härnösand", + "nom": "Vaccinationsenhet Curlinghallen Skyttis", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.9298362078272, - "latitude": 62.62440429993568, - "city": "Härnösand", + "longitude": 18.73309939643111, + "latitude": 63.29646278008092, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Södra vägen 3-5", + "address": "Valhallavägen 20, Örnsköldsvik", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-23 13:45:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 443, - "internal_id": "1309", + "appointment_count": 0, + "internal_id": "1514", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +91,24 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", + "nom": "Vaccinationsenhet Fränsta", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 17.273690876743526, - "latitude": 63.16638706103348, - "city": "Sollefteå", + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", "cp": "00000" }, "metadata": { - "address": "Hullsta gård, Storgatan 69", + "address": "Mårtensvägen 2, Fränsta", "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 09:10:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 403, - "internal_id": "1325", + "appointment_count": 0, + "internal_id": "926", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,21 +116,19 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "22", - "nom": "Vaccinationsenhet Fränsta", + "nom": "Vaccinationsenhet Församlingshemmet Björna", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 16.166493074132607, - "latitude": 62.500909094703054, - "city": "Ånge", + "longitude": 18.599430359109586, + "latitude": 63.55227676376663, + "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Mårtensvägen 2, Fränsta", + "address": "Järnvägsgatan 6, Björna", "business_hours": null, "phone_number": "0611-804 00" }, @@ -136,7 +136,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "926", + "internal_id": "1332", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -147,16 +147,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Församlingshemmet Björna", + "nom": "Vaccinationsenhet Husumgården", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 18.599430359109586, - "latitude": 63.55227676376663, + "longitude": 19.16616919246284, + "latitude": 63.335090194766195, "city": "Örnsköldsvik", "cp": "00000" }, "metadata": { - "address": "Järnvägsgatan 6, Björna", + "address": "Blåsåsen 2, Husum", "business_hours": null, "phone_number": "0611-804 00" }, @@ -164,7 +164,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1332", + "internal_id": "1327", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -175,16 +175,16 @@ }, { "departement": "22", - "nom": "Vaccinationsenhet Husumgården", + "nom": "Vaccinationsenhet Härnösand", "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", "location": { - "longitude": 19.16616919246284, - "latitude": 63.335090194766195, - "city": "Örnsköldsvik", + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", "cp": "00000" }, "metadata": { - "address": "Blåsåsen 2, Husum", + "address": "Södra vägen 3-5", "business_hours": null, "phone_number": "0611-804 00" }, @@ -192,7 +192,7 @@ "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "1327", + "internal_id": "1309", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, From ae1f8d809fbf5219bb3896228a23c99f63faaef2 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:42:47 +0000 Subject: [PATCH 1118/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index b40d2c17a1b..24c1ec1b492 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 06:16:58.695711+02:00", + "last_updated": "2021-06-10 07:42:47.346890+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 864df20c32bd7bc7238f8007bf86902a32aae5fd Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 05:54:15 +0000 Subject: [PATCH 1119/1182] Updating the stats --- data/output/stats.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index f18aff0995b..7affc95a318 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 10, "total": 19, - "creneaux": 348 + "creneaux": 336 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2885 + "creneaux": 2882 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5244 + "creneaux": 5235 }, "08": { - "disponibles": 9, + "disponibles": 10, "total": 30, - "creneaux": 6601 + "creneaux": 7572 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4422 + "creneaux": 4410 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 4, + "disponibles": 3, "total": 6, - "creneaux": 3112 + "creneaux": 3108 }, "03": { "disponibles": 0, @@ -80,9 +80,9 @@ "creneaux": 0 }, "22": { - "disponibles": 4, + "disponibles": 2, "total": 19, - "creneaux": 1860 + "creneaux": 1207 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 90, + "disponibles": 88, "total": 339, - "creneaux": 38549 + "creneaux": 38827 } } \ No newline at end of file From b7f5e0856c5fb3ef490c716a3e01bf7ad274a759 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:54:51 +0000 Subject: [PATCH 1120/1182] Updating the times for Region 10 --- 10.json | 188 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 94 insertions(+), 94 deletions(-) diff --git a/10.json b/10.json index 26a349678a8..c9011972830 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:23:35.512361+02:00", + "last_updated": "2021-06-10 07:54:51.374995+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-17 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 108, + "appointment_count": 107, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -59,6 +59,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": "2021-06-10 10:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 23, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Kallinge vårdcentral", @@ -102,10 +130,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 13:50:00", + "prochain_rdv": "2021-06-10 10:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 6, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-24 15:20:00", + "prochain_rdv": "2021-06-10 10:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 7, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -143,6 +171,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": "2021-06-23 13:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -161,7 +217,7 @@ "prochain_rdv": "2021-06-16 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, @@ -171,6 +227,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Olofströms vårdcentral, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", + "cp": "00000" + }, + "metadata": { + "address": "Rösjövägen 10", + "business_hours": null, + "phone_number": "0454-73 31 00" + }, + "prochain_rdv": "2021-06-17 11:15:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "578", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Olofströmskliniken, Olofström", @@ -189,7 +273,7 @@ "prochain_rdv": "2021-06-22 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 29, + "appointment_count": 31, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +326,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 13:30:00", + "prochain_rdv": "2021-06-19 13:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 61, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -313,34 +397,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Hälsohuset för alla", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.58389613084896, - "latitude": 56.165124322364484, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Västra Vittusgatan 4", - "business_hours": null, - "phone_number": "0455-35 55 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "596", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Jämjö vårdcentral, Jämjö", @@ -369,62 +425,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", - "cp": "00000" - }, - "metadata": { - "address": "Rösjövägen 10", - "business_hours": null, - "phone_number": "0454-73 31 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "578", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Rödeby vårdcentral, Rödeby", From 4544547fda8c63a7d6aec38ee0c56de11243822b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:55:39 +0000 Subject: [PATCH 1121/1182] Updating the times for Region 20 --- 20.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/20.json b/20.json index f619220093f..6ac96fdd04a 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:24:25.595025+02:00", + "last_updated": "2021-06-10 07:55:39.171882+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 09:52:00", + "prochain_rdv": "2021-07-08 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2600, + "appointment_count": 2594, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-17 11:15:00", + "prochain_rdv": "2021-06-30 14:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 243, + "appointment_count": 242, "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 12:40:00", + "prochain_rdv": "2021-07-05 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 33, + "appointment_count": 32, "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-07-02 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 5, "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, From 8c629879d3ef1b719e2f5aef60ea3fc57acd2ced Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:56:07 +0000 Subject: [PATCH 1122/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index d1bca016911..56b4bcb90f0 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:24:54.968342+02:00", + "last_updated": "2021-06-10 07:56:06.303950+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4de088863df0176d5cfb99eb63f342b54ec1ad21 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:56:38 +0000 Subject: [PATCH 1123/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 837ae0b6c1a..8c50ff2d088 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:25:23.194991+02:00", + "last_updated": "2021-06-10 07:56:37.594272+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 89b00fdff95271adaf9c75df361f67f6423de72e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:57:07 +0000 Subject: [PATCH 1124/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 19f8c40e78f..db4109dfae3 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:25:49.686045+02:00", + "last_updated": "2021-06-10 07:57:06.505311+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1a868e6a96b89464b5e1e5c77c8f0f74e69705ea Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 05:57:36 +0000 Subject: [PATCH 1125/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 87a86d42fa0..070a75a58e4 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:26:18.344938+02:00", + "last_updated": "2021-06-10 07:57:36.132136+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3d9a59ad09bc31017eec14e9438645011d78df0d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:00:47 +0000 Subject: [PATCH 1126/1182] Updating the times for Region 06 --- 06.json | 146 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/06.json b/06.json index bb7d64b6310..254753027c7 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:29:32.949900+02:00", + "last_updated": "2021-06-10 08:00:47.036466+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 65, + "appointment_count": 64, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -31,34 +31,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Bankeryd vårdcentral", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.126404129292839, - "latitude": 57.862036664557394, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Sjöåkravägen 18, Bankeryd", - "business_hours": null, - "phone_number": "010-242 38 00" - }, - "prochain_rdv": "2021-06-16 11:08:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "1175", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Bodafors vårdcentral (åldersgrupp eller riksgrupp)", @@ -130,10 +102,10 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-10 14:24:00", + "prochain_rdv": "2021-06-22 13:08:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 309, + "appointment_count": 306, "internal_id": "1183", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-23 08:57:00", + "prochain_rdv": "2021-06-22 15:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 126, + "appointment_count": 124, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -227,6 +199,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": "2021-06-30 15:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-18 10:00:00", + "prochain_rdv": "2021-06-23 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1688, + "appointment_count": 1680, "internal_id": "1196", "vaccine_type": null, "appointment_by_phone_only": false, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:15:00", + "prochain_rdv": "2021-06-22 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 132, + "appointment_count": 120, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-22 19:20:00", + "prochain_rdv": "2021-06-23 18:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 15, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +382,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-07-07 08:50:00", + "prochain_rdv": "2021-07-07 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 188, + "appointment_count": 184, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -441,7 +441,7 @@ "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 88, + "appointment_count": 90, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -494,10 +494,10 @@ "business_hours": null, "phone_number": "010-242 84 00" }, - "prochain_rdv": "2021-06-24 13:52:00", + "prochain_rdv": "2021-06-24 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 45, + "appointment_count": 48, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -537,6 +537,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Bankeryd vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.126404129292839, + "latitude": 57.862036664557394, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Sjöåkravägen 18, Bankeryd", + "business_hours": null, + "phone_number": "010-242 38 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1175", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Bodafors vårdcentral (18+ LSS/assistans/vårdnära)", @@ -817,34 +845,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", From bb17a9c76e31f9e3b8f4e1cf148ca9deb0c82734 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:04:23 +0000 Subject: [PATCH 1127/1182] Updating the times for Region 08 --- 08.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/08.json b/08.json index dd0c2946076..2739cb157ed 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:33:10.171819+02:00", + "last_updated": "2021-06-10 08:04:23.166300+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -189,7 +189,7 @@ "prochain_rdv": "2021-06-10 15:16:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2001, + "appointment_count": 1975, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-16 09:03:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 816, + "appointment_count": 808, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-15 14:09:00", + "prochain_rdv": "2021-06-11 13:15:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4118, + "appointment_count": 4126, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, From 8ed03fb5a347120c87b404403dc7de82b3216ee1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:05:15 +0000 Subject: [PATCH 1128/1182] Updating the times for Region 07 --- 07.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/07.json b/07.json index 92c111be7db..cf77da6a715 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:33:56.280419+02:00", + "last_updated": "2021-06-10 08:05:14.968695+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-12 09:45:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 135, + "appointment_count": 128, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 09:40:00", + "prochain_rdv": "2021-06-12 13:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 62, + "appointment_count": 63, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-11 09:35:00", + "prochain_rdv": "2021-06-16 13:55:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 145, + "appointment_count": 142, "internal_id": 30000, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 13:30:00", + "prochain_rdv": "2021-06-23 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 9, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 11:16:00", + "prochain_rdv": "2021-06-16 13:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3955, + "appointment_count": 3920, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 164d7642b1be0c2b8abd19c834a3c1aa72cf08bf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:05:41 +0000 Subject: [PATCH 1129/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 497d34f82e5..224dc6b1812 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:34:26.850365+02:00", + "last_updated": "2021-06-10 08:05:41.398026+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 439a361faf1f69bf35f40d258e64ace09a400641 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:06:11 +0000 Subject: [PATCH 1130/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index c3a2e0b7200..d5930d86348 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:34:55.880962+02:00", + "last_updated": "2021-06-10 08:06:10.570420+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From a6610cff8a38eaef840ed1f8cfae1cc711a94b4a Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:07:20 +0000 Subject: [PATCH 1131/1182] Updating the times for Region 04 --- 04.json | 64 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/04.json b/04.json index 07396f03972..a1e7773b72d 100644 --- a/04.json +++ b/04.json @@ -1,8 +1,36 @@ { "version": 1, - "last_updated": "2021-06-10 07:36:10.765963+02:00", + "last_updated": "2021-06-10 08:07:20.222736+02:00", "last_scrap": [], "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Gnesta, Gnesta", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" + }, + "metadata": { + "address": "Dansutvägen 2, 646 30 Gnesta", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-24 12:35:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30004, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "04", "nom": "Vaccina Trosa, Trosa", @@ -46,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-19 12:21:00", + "prochain_rdv": "2021-06-18 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 430, + "appointment_count": 434, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +102,7 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 09:32:00", + "prochain_rdv": "2021-06-10 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2674, @@ -201,34 +229,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "04", - "nom": "Vaccina Gnesta, Gnesta", - "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", - "location": { - "longitude": 17.326507675212333, - "latitude": 59.03994773439347, - "city": "Gnesta", - "cp": "64630" - }, - "metadata": { - "address": "Dansutvägen 2, 646 30 Gnesta", - "business_hours": null, - "phone_number": "010-750 09 45" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30004, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "04", "nom": "Vaccina Strängnäs, Strängnäs", From 93cec36d22e415405f0a66f719d6e136a4d6a9ef Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:07:48 +0000 Subject: [PATCH 1132/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index aa07e931d6a..4f43833bbf8 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:36:37.558786+02:00", + "last_updated": "2021-06-10 08:07:47.448743+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 565b22cb49f6de472cd8c0b637f9adab6c96950b Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:08:19 +0000 Subject: [PATCH 1133/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 0084ab98c25..1069ca18887 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:37:07.309654+02:00", + "last_updated": "2021-06-10 08:08:18.668795+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From eb40401287321d650bc9f9687b8acd12b69ce69d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:08:53 +0000 Subject: [PATCH 1134/1182] Updating the times for Region 24 --- 24.json | 61 +++++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/24.json b/24.json index bbbd1350465..ea7473604ef 100644 --- a/24.json +++ b/24.json @@ -1,8 +1,37 @@ { "version": 1, - "last_updated": "2021-06-10 07:37:39.181453+02:00", + "last_updated": "2021-06-10 08:08:52.625396+02:00", "last_scrap": [], - "centres_disponibles": [], + "centres_disponibles": [ + { + "departement": "24", + "nom": "Skellefteå -", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.9456521, + "latitude": 64.7500814, + "city": "Skellefteå", + "cp": "93131" + }, + "metadata": { + "address": "Nygatan 50, 931 31 Skellefteå", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 11:30:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": 30617, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], "centres_indisponibles": [ { "departement": "24", @@ -814,34 +843,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "24", - "nom": "Skellefteå -", - "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", - "location": { - "longitude": 20.9456521, - "latitude": 64.7500814, - "city": "Skellefteå", - "cp": "93131" - }, - "metadata": { - "address": "Nygatan 50, 931 31 Skellefteå", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": null, - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": 30617, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "24", "nom": "Sorsele sjukstuga hälsocentral", From 247682371c0d4686a5949776090fdb5b2aa3cfae Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 06:09:40 +0000 Subject: [PATCH 1135/1182] Updating the stats --- data/output/stats.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 7affc95a318..8d8d43a6b28 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 10, + "disponibles": 13, "total": 19, - "creneaux": 336 + "creneaux": 367 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2882 + "creneaux": 2873 }, "09": { "disponibles": 0, @@ -32,17 +32,17 @@ "06": { "disponibles": 18, "total": 52, - "creneaux": 5235 + "creneaux": 5208 }, "08": { "disponibles": 10, "total": 30, - "creneaux": 7572 + "creneaux": 7546 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4410 + "creneaux": 4365 }, "25": { "disponibles": 0, @@ -60,9 +60,9 @@ "creneaux": 0 }, "04": { - "disponibles": 3, + "disponibles": 4, "total": 6, - "creneaux": 3108 + "creneaux": 3113 }, "03": { "disponibles": 0, @@ -75,9 +75,9 @@ "creneaux": 0 }, "24": { - "disponibles": 0, + "disponibles": 1, "total": 4, - "creneaux": 0 + "creneaux": 1 }, "22": { "disponibles": 2, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 88, + "disponibles": 93, "total": 339, - "creneaux": 38827 + "creneaux": 38757 } } \ No newline at end of file From 18ae2d93ee437186a13962e53b54035273428d17 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:10:10 +0000 Subject: [PATCH 1136/1182] Updating the times for Region 10 --- 10.json | 132 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/10.json b/10.json index c9011972830..f6e5130e782 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:54:51.374995+02:00", + "last_updated": "2021-06-10 08:10:09.808516+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0457-340 70" }, - "prochain_rdv": "2021-06-17 13:40:00", + "prochain_rdv": "2021-06-22 08:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 106, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -105,7 +105,7 @@ "prochain_rdv": "2021-06-10 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 37, + "appointment_count": 36, "internal_id": "583", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:35:00", + "prochain_rdv": "2021-06-11 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 6, + "appointment_count": 3, "internal_id": "595", "vaccine_type": null, "appointment_by_phone_only": false, @@ -171,34 +171,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", - "cp": "00000" - }, - "metadata": { - "address": "Kungsgatan 44", - "business_hours": null, - "phone_number": "0454-395 00" - }, - "prochain_rdv": "2021-06-23 13:55:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "592", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "10", "nom": "Nättraby vårdcentral", @@ -270,7 +242,7 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 11:10:00", + "prochain_rdv": "2021-06-22 10:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 31, @@ -326,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 13:05:00", + "prochain_rdv": "2021-06-19 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 61, + "appointment_count": 60, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -357,7 +329,7 @@ "prochain_rdv": "2021-06-16 09:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 2, "internal_id": "586", "vaccine_type": null, "appointment_by_phone_only": false, @@ -366,6 +338,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": "2021-06-17 15:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ], "centres_indisponibles": [ @@ -425,6 +425,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Rödeby vårdcentral, Rödeby", @@ -536,34 +564,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 54 30" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "581", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ] } \ No newline at end of file From dbe707f299cf390ce2fb829eb29f0abb22e59dc7 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:10:53 +0000 Subject: [PATCH 1137/1182] Updating the times for Region 20 --- 20.json | 72 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/20.json b/20.json index 6ac96fdd04a..f3cd909a99a 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:55:39.171882+02:00", + "last_updated": "2021-06-10 08:10:53.027284+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-07-08 10:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2594, + "appointment_count": 2593, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:25:00", + "prochain_rdv": "2021-06-28 17:32:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 242, - "internal_id": "2102", + "appointment_count": 1, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 10:20:00", + "prochain_rdv": "2021-06-10 17:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, - "internal_id": "2101", + "appointment_count": 1, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-02 10:25:00", + "prochain_rdv": "2021-06-30 14:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, - "internal_id": "2103", + "appointment_count": 242, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,29 +114,27 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-07-05 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2112", + "appointment_count": 32, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -147,24 +145,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": null, + "prochain_rdv": "2021-07-02 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "2111", + "appointment_count": 5, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -172,7 +170,9 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", "nom": "Doktor.se / Ludvika", From 21eebd2ae110585ca5e2bc31efc73764ab31367d Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:11:21 +0000 Subject: [PATCH 1138/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 56b4bcb90f0..8a313b60270 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:56:06.303950+02:00", + "last_updated": "2021-06-10 08:11:20.704573+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 593f6a509fafdcd1acecbaef8a60b2e37b121c66 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:11:53 +0000 Subject: [PATCH 1139/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 8c50ff2d088..b66d7490a76 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:56:37.594272+02:00", + "last_updated": "2021-06-10 08:11:52.377418+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 87ea10bbe6c49e07922420153a568555d2487c24 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:12:25 +0000 Subject: [PATCH 1140/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index db4109dfae3..90036ddea25 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:57:06.505311+02:00", + "last_updated": "2021-06-10 08:12:25.023305+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4a3bae889be03724bbe4f5b325c4b8ba83db54e6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:12:57 +0000 Subject: [PATCH 1141/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 070a75a58e4..55db382464c 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:57:36.132136+02:00", + "last_updated": "2021-06-10 08:12:56.406423+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 49dd2833b99b6d3102f6b579d3c00e1ef0cb9f28 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:13:32 +0000 Subject: [PATCH 1142/1182] Updating the times for Region 22 --- 22.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/22.json b/22.json index ec1a76c409b..95217315159 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:42:19.893253+02:00", + "last_updated": "2021-06-10 08:13:31.704309+02:00", "last_scrap": [], "centres_disponibles": [ { From 43c7db9cdd63e30b04b9ebfd19a1fcd30f9f501e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:14:02 +0000 Subject: [PATCH 1143/1182] Updating the times for Region 19 --- 19.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19.json b/19.json index 24c1ec1b492..179c48b3084 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 07:42:47.346890+02:00", + "last_updated": "2021-06-10 08:14:01.277433+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 4ed0e755e58fcb20e50e5363f9801a782821dc6e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:16:17 +0000 Subject: [PATCH 1144/1182] Updating the times for Region 06 --- 06.json | 138 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/06.json b/06.json index 254753027c7..908f94adc1c 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:00:47.036466+02:00", + "last_updated": "2021-06-10 08:16:17.367411+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-23 11:20:00", + "prochain_rdv": "2021-06-16 11:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 64, + "appointment_count": 65, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-22 15:36:00", + "prochain_rdv": "2021-06-22 16:12:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 124, + "appointment_count": 122, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-23 14:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 507, + "appointment_count": 510, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-07-01 10:30:00", + "prochain_rdv": "2021-07-01 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 18, + "appointment_count": 14, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -199,34 +199,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.117167961555985, - "latitude": 57.70371528734357, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Postgatan 1, Norrahammar", - "business_hours": null, - "phone_number": "010-242 39 00" - }, - "prochain_rdv": "2021-06-30 15:25:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 3, - "internal_id": "1195", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", @@ -273,7 +245,7 @@ "prochain_rdv": "2021-06-22 13:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 120, + "appointment_count": 118, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +270,10 @@ "business_hours": null, "phone_number": "010-244 22 35" }, - "prochain_rdv": "2021-06-23 18:50:00", + "prochain_rdv": "2021-06-23 18:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 15, + "appointment_count": 12, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -395,6 +367,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": "2021-06-23 17:33:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 38, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", @@ -466,10 +466,10 @@ "business_hours": null, "phone_number": "010-243 98 60" }, - "prochain_rdv": "2021-06-29 14:00:00", + "prochain_rdv": "2021-06-23 14:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 106, + "appointment_count": 108, "internal_id": "1236", "vaccine_type": null, "appointment_by_phone_only": false, @@ -845,6 +845,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", @@ -1069,34 +1097,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.06769175799465, - "latitude": 57.18215050776865, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Vråenvägen 31, Värnamo", - "business_hours": null, - "phone_number": "010-244 30 15" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1210", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", From 393869b3be98c0707d9cf4bed57f9333ba8eb14e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:19:48 +0000 Subject: [PATCH 1145/1182] Updating the times for Region 08 --- 08.json | 70 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/08.json b/08.json index 2739cb157ed..7402dd4807b 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:04:23.166300+02:00", + "last_updated": "2021-06-10 08:19:47.611530+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -143,34 +143,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "08", - "nom": "Vaccinationscentral covid-19 Borgholm", - "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", - "location": { - "longitude": 16.64780260606582, - "latitude": 56.87868831899666, - "city": "Borgholm", - "cp": "00000" - }, - "metadata": { - "address": "Villagatan 4, Borgholm", - "business_hours": null, - "phone_number": "0480-844 44" - }, - "prochain_rdv": "2021-06-15 13:36:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 8, - "internal_id": "2056", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "08", "nom": "Vaccinationscentral covid-19 Kalmar", @@ -186,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:16:00", + "prochain_rdv": "2021-06-10 15:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1975, + "appointment_count": 1924, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-16 09:03:00", + "prochain_rdv": "2021-06-16 09:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 808, + "appointment_count": 768, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +214,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-11 13:15:00", + "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4126, + "appointment_count": 4110, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -817,6 +789,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "08", "nom": "Virserums läkarhus", From d3fa0517788e907eeb3113993520e5f485c957f1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:20:43 +0000 Subject: [PATCH 1146/1182] Updating the times for Region 07 --- 07.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/07.json b/07.json index cf77da6a715..c16b35b1c90 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:05:14.968695+02:00", + "last_updated": "2021-06-10 08:20:43.011431+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 13:55:00", + "prochain_rdv": "2021-06-12 10:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 63, + "appointment_count": 64, "internal_id": 29999, "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 13:40:00", + "prochain_rdv": "2021-06-23 13:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 9, + "appointment_count": 10, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 13:10:00", + "prochain_rdv": "2021-06-15 14:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 54, + "appointment_count": 53, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -161,7 +161,7 @@ "prochain_rdv": "2021-06-16 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 49, + "appointment_count": 48, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, From e913b7ad7589d55ca3352f61528d1f227e23f300 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:21:14 +0000 Subject: [PATCH 1147/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 224dc6b1812..3e981d3155c 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:05:41.398026+02:00", + "last_updated": "2021-06-10 08:21:14.164866+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 98befa890ade5982f41f6c121a8788bf95f47245 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:21:49 +0000 Subject: [PATCH 1148/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index d5930d86348..3df18e48270 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:06:10.570420+02:00", + "last_updated": "2021-06-10 08:21:49.036518+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 45718e6abc4fc17671dbb0d8a3c0bb3c66d758e8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:23:04 +0000 Subject: [PATCH 1149/1182] Updating the times for Region 04 --- 04.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04.json b/04.json index a1e7773b72d..5339777d80d 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:07:20.222736+02:00", + "last_updated": "2021-06-10 08:23:03.793517+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 16:15:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 4, + "appointment_count": 2, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -77,7 +77,7 @@ "prochain_rdv": "2021-06-18 09:39:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 434, + "appointment_count": 428, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 10:40:00", + "prochain_rdv": "2021-06-10 14:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2674, + "appointment_count": 2668, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 0ca8aa9e3405ef6dd62530e321dcd27c46891cf5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:23:34 +0000 Subject: [PATCH 1150/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 4f43833bbf8..89f32e0ab29 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:07:47.448743+02:00", + "last_updated": "2021-06-10 08:23:33.611546+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a72cc4da565f03f092e63d759451759ce5637b77 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:24:07 +0000 Subject: [PATCH 1151/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index 1069ca18887..dd8fabc9c49 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:08:18.668795+02:00", + "last_updated": "2021-06-10 08:24:07.340441+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 01aee6fae8673ad7347d8deb56ec8917473cb2f6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:24:40 +0000 Subject: [PATCH 1152/1182] Updating the times for Region 24 --- 24.json | 61 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/24.json b/24.json index ea7473604ef..44b0a8ebe94 100644 --- a/24.json +++ b/24.json @@ -1,37 +1,8 @@ { "version": 1, - "last_updated": "2021-06-10 08:08:52.625396+02:00", + "last_updated": "2021-06-10 08:24:39.524757+02:00", "last_scrap": [], - "centres_disponibles": [ - { - "departement": "24", - "nom": "Skellefteå -", - "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", - "location": { - "longitude": 20.9456521, - "latitude": 64.7500814, - "city": "Skellefteå", - "cp": "93131" - }, - "metadata": { - "address": "Nygatan 50, 931 31 Skellefteå", - "business_hours": null, - "phone_number": "" - }, - "prochain_rdv": "2021-06-10 11:30:00", - "plateforme": "Vaccina", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": 30617, - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - } - ], + "centres_disponibles": [], "centres_indisponibles": [ { "departement": "24", @@ -843,6 +814,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "24", + "nom": "Skellefteå -", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.9456521, + "latitude": 64.7500814, + "city": "Skellefteå", + "cp": "93131" + }, + "metadata": { + "address": "Nygatan 50, 931 31 Skellefteå", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30617, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "24", "nom": "Sorsele sjukstuga hälsocentral", From b7062853c008e3e76b45d43714fbc76b17bcab48 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:29:01 +0000 Subject: [PATCH 1153/1182] Updating the times for Region 22 --- 22.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/22.json b/22.json index 95217315159..45c50bcb08f 100644 --- a/22.json +++ b/22.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-10 08:13:31.704309+02:00", +======= + "last_updated": "2021-06-10 08:29:01.034371+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [ { From c90c6570752a2ca554974752174eab5d51b5f01f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:29:33 +0000 Subject: [PATCH 1154/1182] Updating the times for Region 19 --- 19.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/19.json b/19.json index 179c48b3084..0d842a40179 100644 --- a/19.json +++ b/19.json @@ -1,6 +1,10 @@ { "version": 1, +<<<<<<< Updated upstream "last_updated": "2021-06-10 08:14:01.277433+02:00", +======= + "last_updated": "2021-06-10 08:29:32.876210+02:00", +>>>>>>> Stashed changes "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a4b2242b6349ae14d31c85ac3a80df1bcb99a363 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:55:50 +0000 Subject: [PATCH 1155/1182] Updating the times for Region 10 --- 10.json | 186 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 93 insertions(+), 93 deletions(-) diff --git a/10.json b/10.json index f6e5130e782..e503b3d7db7 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:10:09.808516+02:00", + "last_updated": "2021-06-10 08:55:49.986008+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-22 08:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 20, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 08:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 106, + "appointment_count": 107, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-10 10:00:00", + "prochain_rdv": "2021-06-10 10:05:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 23, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-11 13:30:00", + "prochain_rdv": "2021-06-10 10:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 3, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-10 10:45:00", + "prochain_rdv": "2021-06-17 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 7, + "appointment_count": 8, "internal_id": "584", "vaccine_type": null, "appointment_by_phone_only": false, @@ -173,24 +173,24 @@ }, { "departement": "10", - "nom": "Nättraby vårdcentral", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 15.536557149787294, - "latitude": 56.20188840773274, - "city": "Karlskrona", + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", "cp": "00000" }, "metadata": { - "address": "Kyrkvägen 16", + "address": "Kungsgatan 44", "business_hours": null, - "phone_number": "0455-73 57 20" + "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-16 11:10:00", + "prochain_rdv": "2021-06-23 13:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, - "internal_id": "587", + "appointment_count": 1, + "internal_id": "592", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -201,24 +201,24 @@ }, { "departement": "10", - "nom": "Olofströms vårdcentral, Olofström", + "nom": "Nättraby vårdcentral", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.539450332633177, - "latitude": 56.27785063042903, - "city": "Olofström", + "longitude": 15.536557149787294, + "latitude": 56.20188840773274, + "city": "Karlskrona", "cp": "00000" }, "metadata": { - "address": "Rösjövägen 10", + "address": "Kyrkvägen 16", "business_hours": null, - "phone_number": "0454-73 31 00" + "phone_number": "0455-73 57 20" }, - "prochain_rdv": "2021-06-17 11:15:00", + "prochain_rdv": "2021-06-16 16:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "578", + "appointment_count": 49, + "internal_id": "587", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -242,7 +242,7 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 10:30:00", + "prochain_rdv": "2021-06-22 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 31, @@ -270,10 +270,10 @@ "business_hours": null, "phone_number": "0457-73 14 00" }, - "prochain_rdv": "2021-06-23 09:00:00", + "prochain_rdv": "2021-06-10 11:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 28, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 13:30:00", + "prochain_rdv": "2021-06-19 11:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 60, + "appointment_count": 58, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, @@ -310,62 +310,6 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, - { - "departement": "10", - "nom": "Trossö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.589586190296162, - "latitude": 56.160823506192735, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Fortifikationsgatan 9, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 57 55" - }, - "prochain_rdv": "2021-06-16 09:50:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 2, - "internal_id": "586", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, - { - "departement": "10", - "nom": "Wämö vårdcentral, Karlskrona", - "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", - "location": { - "longitude": 15.601673299156976, - "latitude": 56.18196758297442, - "city": "Karlskrona", - "cp": "00000" - }, - "metadata": { - "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", - "business_hours": null, - "phone_number": "0455-73 54 30" - }, - "prochain_rdv": "2021-06-17 15:35:00", - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "581", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null } ], "centres_indisponibles": [ @@ -427,24 +371,24 @@ }, { "departement": "10", - "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "nom": "Olofströms vårdcentral, Olofström", "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", "location": { - "longitude": 14.864171898010756, - "latitude": 56.171173837721945, - "city": "Karlshamn", + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", "cp": "00000" }, "metadata": { - "address": "Kungsgatan 44", + "address": "Rösjövägen 10", "business_hours": null, - "phone_number": "0454-395 00" + "phone_number": "0454-73 31 00" }, "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 0, - "internal_id": "592", + "internal_id": "578", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -509,6 +453,34 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "10", "nom": "Tvings läkarmottagning, Tving", @@ -564,6 +536,34 @@ "request_counts": null, "appointment_schedules": [], "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null } ] } \ No newline at end of file From c3a5147f815cffd597bfb260992255ade20e2bf4 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:56:41 +0000 Subject: [PATCH 1156/1182] Updating the times for Region 20 --- 20.json | 74 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/20.json b/20.json index f3cd909a99a..96b86f64d7d 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:10:53.027284+02:00", + "last_updated": "2021-06-10 08:56:40.961561+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 10:48:00", + "prochain_rdv": "2021-07-08 11:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2593, + "appointment_count": 2591, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -33,24 +33,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Borlänge", + "nom": "Kronans Apotek Malung", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Borlänge", + "city": "Malung", "cp": "00000" }, "metadata": { - "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "address": "Lisagatan 37, Malung", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-28 17:32:00", + "prochain_rdv": "2021-06-30 14:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2112", + "appointment_count": 241, + "internal_id": "2102", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -61,24 +61,24 @@ }, { "departement": "20", - "nom": "Doktor.se / Falun", + "nom": "Kronans Apotek Sälen", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Falun", + "city": "Sälen", "cp": "00000" }, "metadata": { - "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "address": "Centrumhuset, Sälen", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 17:40:00", + "prochain_rdv": "2021-07-05 10:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1, - "internal_id": "2111", + "appointment_count": 32, + "internal_id": "2101", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -89,24 +89,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Malung", + "nom": "Kronans Apotek Säter", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Malung", + "city": "Säter", "cp": "00000" }, "metadata": { - "address": "Lisagatan 37, Malung", + "address": "Östra Långgatan 10, Säter", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-30 14:25:00", + "prochain_rdv": "2021-06-10 09:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 242, - "internal_id": "2102", + "appointment_count": 2, + "internal_id": "2103", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -114,27 +114,29 @@ "request_counts": null, "appointment_schedules": [], "gid": null - }, + } + ], + "centres_indisponibles": [ { "departement": "20", - "nom": "Kronans Apotek Sälen", + "nom": "Doktor.se / Borlänge", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Sälen", + "city": "Borlänge", "cp": "00000" }, "metadata": { - "address": "Centrumhuset, Sälen", + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-05 10:20:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 32, - "internal_id": "2101", + "appointment_count": 0, + "internal_id": "2112", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -145,24 +147,24 @@ }, { "departement": "20", - "nom": "Kronans Apotek Säter", + "nom": "Doktor.se / Falun", "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", "location": { "longitude": "", "latitude": "", - "city": "Säter", + "city": "Falun", "cp": "00000" }, "metadata": { - "address": "Östra Långgatan 10, Säter", + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-02 10:25:00", + "prochain_rdv": null, "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 5, - "internal_id": "2103", + "appointment_count": 0, + "internal_id": "2111", "vaccine_type": null, "appointment_by_phone_only": false, "erreur": null, @@ -170,9 +172,7 @@ "request_counts": null, "appointment_schedules": [], "gid": null - } - ], - "centres_indisponibles": [ + }, { "departement": "20", "nom": "Doktor.se / Ludvika", From d5d71e154fd7e2c6a04f20892e1d962f0d9497e9 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:57:09 +0000 Subject: [PATCH 1157/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 8a313b60270..701e8d3b473 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:11:20.704573+02:00", + "last_updated": "2021-06-10 08:57:09.316556+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1418b6e18d28a71e6e45f9c6a6cf8695ddb126a1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:57:37 +0000 Subject: [PATCH 1158/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index b66d7490a76..289a8806376 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:11:52.377418+02:00", + "last_updated": "2021-06-10 08:57:37.121759+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From e05fe32c4dd756d94509c02a8b293b10e402b6cf Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:58:08 +0000 Subject: [PATCH 1159/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index 90036ddea25..d0b66d1c763 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:12:25.023305+02:00", + "last_updated": "2021-06-10 08:58:07.418407+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From a978639af3427cfc923070ff6496b0d5e79c1c43 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 06:58:36 +0000 Subject: [PATCH 1160/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index 55db382464c..a186ef7592b 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:12:56.406423+02:00", + "last_updated": "2021-06-10 08:58:35.747466+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 1822da0ad939361d9cb14348650041a2aec5f035 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:01:53 +0000 Subject: [PATCH 1161/1182] Updating the times for Region 06 --- 06.json | 162 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 81 insertions(+), 81 deletions(-) diff --git a/06.json b/06.json index 908f94adc1c..7d03613f74e 100644 --- a/06.json +++ b/06.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:16:17.367411+02:00", + "last_updated": "2021-06-10 09:01:52.446395+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-243 38 00" }, - "prochain_rdv": "2021-06-16 11:35:00", + "prochain_rdv": "2021-06-23 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 65, + "appointment_count": 62, "internal_id": "1176", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-243 37 00" }, - "prochain_rdv": "2021-06-16 13:20:00", + "prochain_rdv": "2021-06-22 17:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 152, + "appointment_count": 148, "internal_id": "1177", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "010-242 49 00" }, - "prochain_rdv": "2021-06-22 13:08:00", + "prochain_rdv": "2021-06-16 13:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 306, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "010-242 54 00" }, - "prochain_rdv": "2021-06-22 16:12:00", + "prochain_rdv": "2021-06-23 09:06:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 122, + "appointment_count": 118, "internal_id": "1186", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "010-242 35 20" }, - "prochain_rdv": "2021-06-23 14:42:00", + "prochain_rdv": "2021-06-23 14:48:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 510, + "appointment_count": 507, "internal_id": "1198", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "010-242 47 00" }, - "prochain_rdv": "2021-07-01 10:40:00", + "prochain_rdv": "2021-06-23 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, + "appointment_count": 18, "internal_id": "1194", "vaccine_type": null, "appointment_by_phone_only": false, @@ -214,7 +214,7 @@ "business_hours": null, "phone_number": "010-243 31 70" }, - "prochain_rdv": "2021-06-23 13:15:00", + "prochain_rdv": "2021-06-18 10:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1680, @@ -227,6 +227,62 @@ "appointment_schedules": [], "gid": null }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": "2021-06-10 14:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Rydaholm vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.304028846656465, + "latitude": 56.984216189366975, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Dahlgrens väg, Rydaholm", + "business_hours": null, + "phone_number": "010-244 17 50" + }, + "prochain_rdv": "2021-06-15 11:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 55, + "internal_id": "1200", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, { "departement": "06", "nom": "Bra Liv Råslätt vårdcentral, Jönköping (åldersgrupp eller riksgrupp)", @@ -242,10 +298,10 @@ "business_hours": null, "phone_number": "010-242 37 00" }, - "prochain_rdv": "2021-06-22 13:20:00", + "prochain_rdv": "2021-06-22 11:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 118, + "appointment_count": 122, "internal_id": "1201", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +329,7 @@ "prochain_rdv": "2021-06-23 18:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 12, + "appointment_count": 6, "internal_id": "1203", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +354,10 @@ "business_hours": null, "phone_number": "010-243 86 10" }, - "prochain_rdv": "2021-06-23 10:04:00", + "prochain_rdv": "2021-06-18 11:44:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 246, + "appointment_count": 255, "internal_id": "1209", "vaccine_type": null, "appointment_by_phone_only": false, @@ -329,7 +385,7 @@ "prochain_rdv": "2021-06-30 14:18:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 14, + "appointment_count": 12, "internal_id": "1206", "vaccine_type": null, "appointment_by_phone_only": false, @@ -354,10 +410,10 @@ "business_hours": null, "phone_number": "010-243 20 10" }, - "prochain_rdv": "2021-07-07 08:55:00", + "prochain_rdv": "2021-07-07 10:25:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 184, + "appointment_count": 152, "internal_id": "2050", "vaccine_type": null, "appointment_by_phone_only": false, @@ -382,10 +438,10 @@ "business_hours": null, "phone_number": "010-244 30 15" }, - "prochain_rdv": "2021-06-23 17:33:00", + "prochain_rdv": "2021-06-23 17:42:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 38, + "appointment_count": 392, "internal_id": "1210", "vaccine_type": null, "appointment_by_phone_only": false, @@ -441,7 +497,7 @@ "prochain_rdv": "2021-06-22 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 90, + "appointment_count": 86, "internal_id": "1223", "vaccine_type": null, "appointment_by_phone_only": false, @@ -497,7 +553,7 @@ "prochain_rdv": "2021-06-24 11:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 42, "internal_id": "1259", "vaccine_type": null, "appointment_by_phone_only": false, @@ -901,34 +957,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.207046075921033, - "latitude": 57.77839529528235, - "city": "Jönköping", - "cp": "00000" - }, - "metadata": { - "address": "Hermansvägen 5, Jönköping", - "business_hours": null, - "phone_number": "010-242 44 00" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1199", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", @@ -957,34 +985,6 @@ "appointment_schedules": [], "gid": null }, - { - "departement": "06", - "nom": "Bra Liv Rydaholm vårdcentral (åldersgrupp eller riksgrupp)", - "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", - "location": { - "longitude": 14.304028846656465, - "latitude": 56.984216189366975, - "city": "Värnamo", - "cp": "00000" - }, - "metadata": { - "address": "Dahlgrens väg, Rydaholm", - "business_hours": null, - "phone_number": "010-244 17 50" - }, - "prochain_rdv": null, - "plateforme": "MittVaccin", - "type": "vaccination-center", - "appointment_count": 0, - "internal_id": "1200", - "vaccine_type": null, - "appointment_by_phone_only": false, - "erreur": null, - "last_scan_with_availabilities": null, - "request_counts": null, - "appointment_schedules": [], - "gid": null - }, { "departement": "06", "nom": "Bra Liv Råslätt vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", From 1b9768ebd574b37103cc9d5da4070492132d102e Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:05:31 +0000 Subject: [PATCH 1162/1182] Updating the times for Region 08 --- 08.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/08.json b/08.json index 7402dd4807b..b95bcf40823 100644 --- a/08.json +++ b/08.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:19:47.611530+02:00", + "last_updated": "2021-06-10 09:05:29.554504+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -21,7 +21,7 @@ "prochain_rdv": "2021-06-17 08:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 101, + "appointment_count": 83, "internal_id": "521", "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "0495-155 02" }, - "prochain_rdv": "2021-06-15 18:25:00", + "prochain_rdv": "2021-06-15 18:35:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 21, + "appointment_count": 14, "internal_id": "505", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "0486-412 30" }, - "prochain_rdv": "2021-06-17 09:50:00", + "prochain_rdv": "2021-06-17 09:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 135, + "appointment_count": 126, "internal_id": "493", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-10 15:24:00", + "prochain_rdv": "2021-06-10 15:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 1924, + "appointment_count": 1823, "internal_id": "1546", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "0480-844 44" }, - "prochain_rdv": "2021-06-16 09:24:00", + "prochain_rdv": "2021-06-16 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 768, + "appointment_count": 760, "internal_id": "2053", "vaccine_type": null, "appointment_by_phone_only": false, @@ -217,7 +217,7 @@ "prochain_rdv": "2021-06-15 14:09:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 4110, + "appointment_count": 4101, "internal_id": "1547", "vaccine_type": null, "appointment_by_phone_only": false, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0492-176 00" }, - "prochain_rdv": "2021-06-17 11:15:00", + "prochain_rdv": "2021-06-17 11:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 184, + "appointment_count": 177, "internal_id": "491", "vaccine_type": null, "appointment_by_phone_only": false, From c8524b7f39258c089ebae51d531d4b9e95d376a1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:06:18 +0000 Subject: [PATCH 1163/1182] Updating the times for Region 07 --- 07.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/07.json b/07.json index c16b35b1c90..5d569bdcf9d 100644 --- a/07.json +++ b/07.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:20:43.011431+02:00", + "last_updated": "2021-06-10 09:06:17.522477+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-12 09:45:00", + "prochain_rdv": "2021-06-12 09:50:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 128, + "appointment_count": 126, "internal_id": 29997, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,7 +74,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:55:00", + "prochain_rdv": "2021-06-10 11:40:00", "plateforme": "Vaccina", "type": "vaccination-center", "appointment_count": 142, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-23 13:30:00", + "prochain_rdv": "2021-06-23 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 10, + "appointment_count": 9, "internal_id": "1556", "vaccine_type": null, "appointment_by_phone_only": false, @@ -130,10 +130,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-15 14:20:00", + "prochain_rdv": "2021-06-16 09:30:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 53, + "appointment_count": 52, "internal_id": "2052", "vaccine_type": null, "appointment_by_phone_only": false, @@ -158,10 +158,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:50:00", + "prochain_rdv": "2021-06-10 09:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 48, + "appointment_count": 49, "internal_id": "1557", "vaccine_type": null, "appointment_by_phone_only": false, @@ -186,10 +186,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-16 13:48:00", + "prochain_rdv": "2021-06-10 09:28:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 3920, + "appointment_count": 3927, "internal_id": "2063", "vaccine_type": null, "appointment_by_phone_only": false, From 11986c1a70cdb992988fc92fe43cb5439f0ddec6 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:06:47 +0000 Subject: [PATCH 1164/1182] Updating the times for Region 25 --- 25.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/25.json b/25.json index 3e981d3155c..a97e20b88eb 100644 --- a/25.json +++ b/25.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:21:14.164866+02:00", + "last_updated": "2021-06-10 09:06:46.966958+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From b3c5e0b55a846283d087b4dde621114b953b836c Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:07:19 +0000 Subject: [PATCH 1165/1182] Updating the times for Region 01 --- 01.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.json b/01.json index 3df18e48270..ff814f9d747 100644 --- a/01.json +++ b/01.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:21:49.036518+02:00", + "last_updated": "2021-06-10 09:07:19.122222+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 8f6d45d018eac5361c29d772657f23dd674ce3ea Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:08:36 +0000 Subject: [PATCH 1166/1182] Updating the times for Region 04 --- 04.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/04.json b/04.json index 5339777d80d..0c2d71eff62 100644 --- a/04.json +++ b/04.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:23:03.793517+02:00", + "last_updated": "2021-06-10 09:08:35.412748+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-24 12:35:00", + "prochain_rdv": "2021-06-10 11:40:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 1, + "appointment_count": 3, "internal_id": 30004, "vaccine_type": null, "appointment_by_phone_only": false, @@ -46,10 +46,10 @@ "business_hours": null, "phone_number": "010-750 09 45" }, - "prochain_rdv": "2021-06-22 16:15:00", + "prochain_rdv": "2021-06-13 15:25:00", "plateforme": "Vaccina", "type": "vaccination-center", - "appointment_count": 2, + "appointment_count": 3, "internal_id": 30006, "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0155-60 60 40" }, - "prochain_rdv": "2021-06-18 09:39:00", + "prochain_rdv": "2021-06-19 12:24:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 428, + "appointment_count": 426, "internal_id": "45", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,10 +102,10 @@ "business_hours": null, "phone_number": "011-473 53 70" }, - "prochain_rdv": "2021-06-10 14:36:00", + "prochain_rdv": "2021-06-10 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2668, + "appointment_count": 2766, "internal_id": "2069", "vaccine_type": null, "appointment_by_phone_only": false, From 76cd70382635404b1939b1ea3e8bec33f6466300 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:09:05 +0000 Subject: [PATCH 1167/1182] Updating the times for Region 03 --- 03.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.json b/03.json index 89f32e0ab29..c775b4d96cf 100644 --- a/03.json +++ b/03.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:23:33.611546+02:00", + "last_updated": "2021-06-10 09:09:05.276422+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 3f6df1041df24faac0d88f713a3ff44a2221ff65 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:09:37 +0000 Subject: [PATCH 1168/1182] Updating the times for Region 17 --- 17.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.json b/17.json index dd8fabc9c49..5885a004ae7 100644 --- a/17.json +++ b/17.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:24:07.340441+02:00", + "last_updated": "2021-06-10 09:09:36.544807+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From b8f0887a6d75fb023a3564daf3896f144a6e1731 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:10:05 +0000 Subject: [PATCH 1169/1182] Updating the times for Region 24 --- 24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24.json b/24.json index 44b0a8ebe94..e45c97d5555 100644 --- a/24.json +++ b/24.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:24:39.524757+02:00", + "last_updated": "2021-06-10 09:10:04.890070+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [ From 0d5b4338c459d9134db5c241dcdc3af7208d1498 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:14:53 +0000 Subject: [PATCH 1170/1182] Updating the times for Region 22 --- 22.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/22.json b/22.json index 45c50bcb08f..ac762eae69a 100644 --- a/22.json +++ b/22.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-10 08:13:31.704309+02:00", -======= - "last_updated": "2021-06-10 08:29:01.034371+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-10 09:14:52.458752+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -50,10 +46,10 @@ "business_hours": null, "phone_number": "0611-804 00" }, - "prochain_rdv": "2021-06-10 09:10:00", + "prochain_rdv": "2021-06-10 09:20:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 403, + "appointment_count": 402, "internal_id": "1325", "vaccine_type": null, "appointment_by_phone_only": false, From a1413a09fbfa7f65ba4c9a3b93468aee9736daed Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:15:21 +0000 Subject: [PATCH 1171/1182] Updating the times for Region 19 --- 19.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/19.json b/19.json index 0d842a40179..ae50c60bcf1 100644 --- a/19.json +++ b/19.json @@ -1,10 +1,6 @@ { "version": 1, -<<<<<<< Updated upstream - "last_updated": "2021-06-10 08:14:01.277433+02:00", -======= - "last_updated": "2021-06-10 08:29:32.876210+02:00", ->>>>>>> Stashed changes + "last_updated": "2021-06-10 09:15:21.409153+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 11fc6ffb5ccbf457620b627babae902f0d5cfdd1 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 07:17:30 +0000 Subject: [PATCH 1172/1182] Updating the stats --- data/output/stats.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 8d8d43a6b28..16dcf53a294 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -1,13 +1,13 @@ { "10": { - "disponibles": 13, + "disponibles": 11, "total": 19, - "creneaux": 367 + "creneaux": 364 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2873 + "creneaux": 2866 }, "09": { "disponibles": 0, @@ -30,19 +30,19 @@ "creneaux": 0 }, "06": { - "disponibles": 18, + "disponibles": 20, "total": 52, - "creneaux": 5208 + "creneaux": 5602 }, "08": { - "disponibles": 10, + "disponibles": 9, "total": 30, - "creneaux": 7546 + "creneaux": 7272 }, "07": { "disponibles": 7, "total": 7, - "creneaux": 4365 + "creneaux": 4369 }, "25": { "disponibles": 0, @@ -62,7 +62,7 @@ "04": { "disponibles": 4, "total": 6, - "creneaux": 3113 + "creneaux": 3198 }, "03": { "disponibles": 0, @@ -75,14 +75,14 @@ "creneaux": 0 }, "24": { - "disponibles": 1, + "disponibles": 0, "total": 4, - "creneaux": 1 + "creneaux": 0 }, "22": { "disponibles": 2, "total": 19, - "creneaux": 1207 + "creneaux": 1206 }, "19": { "disponibles": 0, @@ -105,8 +105,8 @@ "creneaux": 2099 }, "tout_departement": { - "disponibles": 93, + "disponibles": 91, "total": 339, - "creneaux": 38757 + "creneaux": 38954 } } \ No newline at end of file From 5023676c7e7d88059da967342002c32c49bd1cc5 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:18:11 +0000 Subject: [PATCH 1173/1182] Updating the times for Region 10 --- 10.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/10.json b/10.json index e503b3d7db7..9c6001a940c 100644 --- a/10.json +++ b/10.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:55:49.986008+02:00", + "last_updated": "2021-06-10 09:18:10.013046+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "0454-73 27 00" }, - "prochain_rdv": "2021-06-22 08:20:00", + "prochain_rdv": "2021-06-22 08:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 20, + "appointment_count": 19, "internal_id": "580", "vaccine_type": null, "appointment_by_phone_only": false, @@ -49,7 +49,7 @@ "prochain_rdv": "2021-06-22 08:00:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 107, + "appointment_count": 106, "internal_id": "591", "vaccine_type": null, "appointment_by_phone_only": false, @@ -74,10 +74,10 @@ "business_hours": null, "phone_number": "0455-35 55 00" }, - "prochain_rdv": "2021-06-10 10:05:00", + "prochain_rdv": "2021-06-10 10:10:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 23, + "appointment_count": 25, "internal_id": "596", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "0457-73 17 90" }, - "prochain_rdv": "2021-06-10 11:35:00", + "prochain_rdv": "2021-06-10 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 36, @@ -130,7 +130,7 @@ "business_hours": null, "phone_number": "0455-61 94 00" }, - "prochain_rdv": "2021-06-10 10:50:00", + "prochain_rdv": "2021-06-10 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 3, @@ -158,7 +158,7 @@ "business_hours": null, "phone_number": "0455-73 55 00" }, - "prochain_rdv": "2021-06-17 13:45:00", + "prochain_rdv": "2021-06-17 13:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 8, @@ -186,7 +186,7 @@ "business_hours": null, "phone_number": "0454-395 00" }, - "prochain_rdv": "2021-06-23 13:55:00", + "prochain_rdv": "2021-06-10 13:45:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 1, @@ -242,10 +242,10 @@ "business_hours": null, "phone_number": "0454-919 99" }, - "prochain_rdv": "2021-06-22 11:10:00", + "prochain_rdv": "2021-06-22 10:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 31, + "appointment_count": 32, "internal_id": "593", "vaccine_type": null, "appointment_by_phone_only": false, @@ -273,7 +273,7 @@ "prochain_rdv": "2021-06-10 11:40:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 28, + "appointment_count": 26, "internal_id": "579", "vaccine_type": null, "appointment_by_phone_only": false, @@ -298,10 +298,10 @@ "business_hours": null, "phone_number": "0454-73 34 02" }, - "prochain_rdv": "2021-06-19 11:10:00", + "prochain_rdv": "2021-06-19 13:50:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 58, + "appointment_count": 56, "internal_id": "577", "vaccine_type": null, "appointment_by_phone_only": false, From 6dc9f2bc9660b577791e056fbcc737b9df8cfc81 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:18:58 +0000 Subject: [PATCH 1174/1182] Updating the times for Region 20 --- 20.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/20.json b/20.json index 96b86f64d7d..6f4129ec8f1 100644 --- a/20.json +++ b/20.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:56:40.961561+02:00", + "last_updated": "2021-06-10 09:18:57.927834+02:00", "last_scrap": [], "centres_disponibles": [ { @@ -18,10 +18,10 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-07-08 11:36:00", + "prochain_rdv": "2021-07-08 10:36:00", "plateforme": "MittVaccin", "type": "vaccination-center", - "appointment_count": 2591, + "appointment_count": 2589, "internal_id": "2114", "vaccine_type": null, "appointment_by_phone_only": false, @@ -102,7 +102,7 @@ "business_hours": null, "phone_number": "" }, - "prochain_rdv": "2021-06-10 09:55:00", + "prochain_rdv": "2021-07-02 10:55:00", "plateforme": "MittVaccin", "type": "vaccination-center", "appointment_count": 2, From 2d44ada6521baafca675d302e4b760ae8db60ba1 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:19:29 +0000 Subject: [PATCH 1175/1182] Updating the times for Region 09 --- 09.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.json b/09.json index 701e8d3b473..6293c1dc55e 100644 --- a/09.json +++ b/09.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:57:09.316556+02:00", + "last_updated": "2021-06-10 09:19:28.987355+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 2be8c7dc17ff6b6fbd7f91c6c1102216a1fda956 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:19:54 +0000 Subject: [PATCH 1176/1182] Updating the times for Region 21 --- 21.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21.json b/21.json index 289a8806376..94f253433fb 100644 --- a/21.json +++ b/21.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:57:37.121759+02:00", + "last_updated": "2021-06-10 09:19:54.234849+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From 9c75e63030021c7de9db3b5320ef00669d766c5f Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:20:24 +0000 Subject: [PATCH 1177/1182] Updating the times for Region 13 --- 13.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.json b/13.json index d0b66d1c763..c2ba9dc30f6 100644 --- a/13.json +++ b/13.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:58:07.418407+02:00", + "last_updated": "2021-06-10 09:20:23.844203+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From bfe8a3734f716c8a8d24596aa9f8c641909aafc8 Mon Sep 17 00:00:00 2001 From: "Pierre Mesure (Github Actions)" Date: Thu, 10 Jun 2021 07:20:55 +0000 Subject: [PATCH 1178/1182] Updating the times for Region 23 --- 23.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23.json b/23.json index a186ef7592b..f234b3f5782 100644 --- a/23.json +++ b/23.json @@ -1,6 +1,6 @@ { "version": 1, - "last_updated": "2021-06-10 08:58:35.747466+02:00", + "last_updated": "2021-06-10 09:20:54.441142+02:00", "last_scrap": [], "centres_disponibles": [], "centres_indisponibles": [] From d41d100d911dce1cfc1016b0651ae3f16f2aafb5 Mon Sep 17 00:00:00 2001 From: "Ana Bulas Cruz (Github Actions)" Date: Thu, 10 Jun 2021 07:44:54 +0000 Subject: [PATCH 1179/1182] Updating the stats --- data/output/stats.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/output/stats.json b/data/output/stats.json index 16dcf53a294..b6f9b484028 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -2,12 +2,12 @@ "10": { "disponibles": 11, "total": 19, - "creneaux": 364 + "creneaux": 361 }, "20": { "disponibles": 4, "total": 8, - "creneaux": 2866 + "creneaux": 2864 }, "09": { "disponibles": 0, @@ -107,6 +107,6 @@ "tout_departement": { "disponibles": 91, "total": 339, - "creneaux": 38954 + "creneaux": 38949 } } \ No newline at end of file From 53b740ca948515003772a6f650af0e6f3277c41a Mon Sep 17 00:00:00 2001 From: Ana Bulas Cruz Date: Thu, 10 Jun 2021 09:51:51 +0200 Subject: [PATCH 1180/1182] Update scrape_times.yml Revert Github Actions times to original times. --- .github/workflows/scrape_times.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scrape_times.yml b/.github/workflows/scrape_times.yml index 55d6fe79307..2a6434a9b23 100644 --- a/.github/workflows/scrape_times.yml +++ b/.github/workflows/scrape_times.yml @@ -2,7 +2,7 @@ name: Scrape Times on: workflow_dispatch: schedule: - - cron: '5,25,55 * * * *' + - cron: '0,15,30,45 * * * *' jobs: scrape: name: Scrape times From 36c603db8936fdab27a144061d37fc31906a8137 Mon Sep 17 00:00:00 2001 From: Ana Bulas Cruz Date: Fri, 11 Jun 2021 00:33:55 +0200 Subject: [PATCH 1181/1182] Generate maps for statistics page. Took code from vitemadose and adapted it to generate maps for Sweden. --- config.json | 403 + data/input/{region-pop.csv => dep-pop.csv} | 0 data/input/map.svg | 549 +- data/output/info_centres.json | 19606 +++++++++++++++++++ data/output/map_centres.svg | 853 + data/output/map_creneaux.svg | 853 + data/output/map_creneaux_pop.svg | 853 + data/output/stats.json | 28 +- generate_stats.py | 26 +- stats_generation/stats_map.py | 257 + utils/vmd_config.py | 42 + utils/vmd_logger.py | 113 + 12 files changed, 23465 insertions(+), 118 deletions(-) create mode 100644 config.json rename data/input/{region-pop.csv => dep-pop.csv} (100%) create mode 100644 data/output/info_centres.json create mode 100644 data/output/map_centres.svg create mode 100644 data/output/map_creneaux.svg create mode 100644 data/output/map_creneaux_pop.svg create mode 100644 stats_generation/stats_map.py create mode 100644 utils/vmd_config.py create mode 100644 utils/vmd_logger.py diff --git a/config.json b/config.json new file mode 100644 index 00000000000..e65dda5f88b --- /dev/null +++ b/config.json @@ -0,0 +1,403 @@ +{ + "data-auto": { + "base_url": "https://raw.githubusercontent.com/CovidTrackerFr/vitemadose/data-auto/" + }, + "inputs": { + "centers_gouv": "https://www.data.gouv.fr/fr/datasets/r/5cb21a85-b0b0-4a65-a249-806a040ec372", + "rdv_gouv": "https://www.data.gouv.fr/fr/datasets/r/b7bd49cd-904c-4c5d-b60f-018b51df9b0e", + "departements": "data/input/departements-france.csv", + "blocklist": "data/input/centers_blocklist.json", + "postalcode_to_insee": "data/input/codepostal_to_insee.json", + "cedex_to_insee": "data/input/cedex_to_insee.json", + "insee_to_postalcode_and_dep": "data/input/insee_to_codepostal_and_code_departement.json", + "last_scans": "https://vitemadose.gitlab.io/vitemadose/info_centres.json", + "dep_pop": "data/input/dep-pop.csv", + "map": "data/input/map.svg" + }, + "outputs": { + "stats": { + "data-auto": "https://vitemadose.gitlab.io/vitemadose/", + "chronodoses": "data/output/stats_chronodoses.json", + "by_date": "stats_by_date.json", + "by_date_dep": "stats_by_date_dep.json", + "by_vaccine_type": "data/output/stats_by_vaccine.json", + "center_types": "stats_center_types.json", + "global": "stats.json" + }, + "last_scans": "data/output/info_centres.json" + }, + "scrape": { + "pool_size": 50, + "blocked_calls_threshold": 10 + }, + "vaccines": { + "Pfizer-BioNTech": ["pfizer", "biontech"], + "Moderna": ["moderna"], + "ARNm": ["arn", "arnm", "arn-m", "arn m"], + "AstraZeneca": ["astrazeneca", "astra-zeneca", "astra zeneca", "az"], + "Janssen": [ + "janssen", + "jansen", + "jansenn", + "jannsen", + "jenssen", + "jensen", + "jonson", + "johnson", + "johnnson", + "j&j" + ] + }, + "appointment_split_days": [ + 1, + 2, + 7, + 28, + 49 + ], + "chronodoses": { + "vaccine": [ + "ARNm", + "Pfizer-BioNTech", + "Moderna" + ], + "interval": 2 + }, + "excluded_gouv_platforms": [ + "doctolib", + "maiia" + ], + "reserved_centers": [ + "réservé", + "reserve", + "professionnel" + ], + "platforms": { + "doctolib": { + "enabled": true, + "timeout": 30, + "recognized_urls": [ + "https://partners.doctolib.fr", + "https://www.doctolib.fr" + ], + "build_url": "https://www.doctolib.fr{url_path}?pid={place_id}", + "api": { + "booking": "https://partners.doctolib.fr/booking/{centre}.json", + "slots": "https://partners.doctolib.fr/availabilities.json?start_date={start_date}&visit_motive_ids={motive_id}&agenda_ids={agenda_ids_q}&insurance_sector=public&practice_ids={practice_ids_q}&destroy_temporary=true&limit={limit}", + "scraper": "http://www.doctolib.fr/vaccination-covid-19/france.json?page={0}", + "scraper_dep": "http://www.doctolib.fr/vaccination-covid-19/{0}.json?page={1}" + }, + "request_sleep": 0.1, + "pagination": { + "pages": 4, + "days": 7 + }, + "filters": { + "appointment_reason": [ + "1 ere injection", + "1 ère injection", + "1er injection", + "1ere dose", + "1ere injection", + "1ère injection", + "1re injection", + "vaccination", + "Vaccin COVID-19" + ], + "appointment_category": [ + "18 à 54", + "55 ans", + "70 ans", + "50 ans", + "18 ans", + "16 ans", + "eligibles", + "éligibles", + "astra Zeneca", + "femmes enceintes", + "grossesse", + "injection unique", + "janssen", + "je ne suis pas professionnel de santé", + "je suis un particulier", + "non professionnels de santé", + "patient", + "personnes à très haut risque", + "personnes âgées de 60 ans ou plus", + "personnes de 60 ans et plus", + "personnes de plus de", + "pfizer", + "public", + "vaccination au centre", + "vaccination covid", + "vaccination pfizer", + "assesseur", + "vote", + "pharmacien", + "vaccin", + "réservation en ligne", + "réservable en ligne", + "comorbidités", + "enceinte", + "immunodéprimée", + "18", + "consultation", + "eligibles", + "très haut risque", + "moderna", + "astra", + "astrazeneca", + "pré-consultation" + ] + }, + "center_scraper": { + "result_path": "data/output/doctolib-centers.json", + "business_days": [ + "lundi", + "mardi", + "mercredi", + "jeudi", + "vendredi", + "samedi", + "dimanche" + ], + "center_types": { + "pharmacie": "drugstore", + "medecin": "general-practitioner", + "*": "vaccination-center" + }, + "categories": [ + "hopital-public", + "centre-de-vaccinations-internationales", + "centre-de-sante", + "pharmacie", + "medecin-generaliste", + "centre-de-vaccinations-internationales", + "centre-examens-de-sante" + ], + "dep_conversion": { + "indre": "departement-indre", + "gironde": "departement-gironde", + "mayenne": "departement-mayenne", + "vienne": "departement-vienne" + } + } + }, + "keldoc": { + "enabled": true, + "timeout": 10, + "recognized_urls": [ + "https://vaccination-covid.keldoc.com", + "https://keldoc.com" + ], + "api": { + "booking": "https://booking.keldoc.com/api/patients/v2/searches/resource", + "motives": "https://booking.keldoc.com/api/patients/v2/clinics/{0}/specialties/{1}/cabinets/{2}/motive_categories", + "cabinets": "https://booking.keldoc.com/api/patients/v2/clinics/{0}/specialties/{1}/cabinets", + "slots": "https://www.keldoc.com/api/patients/v2/timetables/{0}" + }, + "pagination": { + "pages": 4, + "days": 4 + }, + "filters": { + "appointment_speciality": [ + "Maladies infectieuses", + "COVID19 - Vaccination" + ], + "appointment_skill": [ + "Centre de vaccination COVID-19" + ], + "appointment_reason": [ + "1 er inj", + "1 ere inj", + "1 ère inj", + "1ere dose", + "1ère dose", + "1ere inj", + "1ère inj", + "covid19 - vaccination", + "inj 1", + "inj. 1", + "inj1", + "1 injection", + "première dose", + "1° injection", + "première injection" + ] + }, + "center_scraper": { + "result_path": "data/output/keldoc_centers.json" + } + }, + "maiia": { + "enabled": true, + "timeout": 30, + "base_url": "https://www.maiia.com", + "recognized_urls": [ + "https://www.maiia.com" + ], + "api": { + "scraper": "https://www.maiia.com/api/pat-public/hcd?distanceMax=10000&AllVaccinationPlaces=true&speciality.shortName={speciality}", + "slots": "https://www.maiia.com/api/pat-public/availabilities?centerId={center_id}&consultationReasonName={consultation_reason_name}&from={start_date}&to={end_date}", + "next_slot": "https://www.maiia.com/api/pat-public/availability-closests?centerId={center_id}&consultationReasonName={consultation_reason_name}&from={start_date}", + "motives": "https://www.maiia.com/api/pat-public/consultation-reason-hcd?rootCenterId={center_id}" + }, + "center_scraper": { + "centers_per_page": 100, + "result_path": "data/output/maiia_centers.json", + "categories": [ + "centre-de-vaccination", + "pharmacie", + "centre-hospitalier-(ch)" + ], + "specialities": [ + "VAC01" + ], + "excluded_ids": [ + "603e4fae8c512e753fc49ba1" + ], + "excluded_names": [ + "test", + "antigenique", + "antigénique" + ], + "business_days": { + "Lundi": "MONDAY", + "Mardi": "TUESDAY", + "Mercredi": "WEDNESDAY", + "Jeudi": "THURSDAY", + "Vendredi": "FRIDAY", + "Samedi": "SATURDAY", + "Dimanche": "SUNDAY" + } + }, + "filters": { + "injection_type": [ + "FIRST" + ] + }, + "calendar_limit": 50 + }, + "mapharma": { + "enabled": true, + "timeout": 30, + "recognized_urls": [ + "https://mapharma.net" + ], + "api": { + "opendata": "https://mapharma.net/opendata/rdv", + "opendata_fallback": "https://raw.githubusercontent.com/CovidTrackerFr/vitemadose/data-auto/data/output/mapharma_open_data.json", + "slots": "https://mapharma.net/api/public/calendar/{campagneId}/{start_date}/{optionId}" + }, + "headers": { + "referer": "https://mapharma.net/" + }, + "paths": { + "opendata": "data/output/mapharma_open_data.json", + "valid_campaigns": "data/input/mapharma_campagnes_valides.json", + "invalid_campaigns": "data/input/mapharma_campagnes_inconnues.json" + }, + "slot_limit": 50, + "business_days": [ + "lundi", + "mardi", + "mercredi", + "jeudi", + "vendredi", + "samedi", + "dimanche" + ], + "filters": { + "valid_campaigns": [ + "vaccination covid", + "covid 1ère injection" + ], + "invalid_campaigns": [ + "test antigenique", + "test antigénique", + "test sérologique", + "pilulier", + "diététique", + "nutrition" + ] + } + }, + "ordoclic": { + "enabled": true, + "timeout": 30, + "recognized_urls": [ + "https://app.ordoclic.fr" + ], + "build_url": "https://app.ordoclic.fr/app/pharmacie/{slug}", + "api": { + "scraper": "https://api.ordoclic.fr/v1/public/search", + "motives": "https://api.ordoclic.fr/v1/solar/entities/{entityId}/reasons", + "slots": "https://api.ordoclic.fr/v1/solar/slots/availableSlots", + "profile_professionals": "https://api.ordoclic.fr/v1/professionals/profile/{slug}", + "profile_public_entities": "https://api.ordoclic.fr/v1/public/entities/profile/{slug}" + }, + "filters": { + "valid_injections": [ + 1 + ] + }, + "scraper_payload": { + "page": "1", + "per_page": "10000", + "in.isPublicProfile": "true", + "in.isCovidVaccineSupported": "true", + "or.covidOnlineBookingAvailabilities.vaccineAstraZeneca1": "true", + "or.covidOnlineBookingAvailabilities.vaccineJanssen1": "true", + "or.covidOnlineBookingAvailabilities.vaccinePfizer1": "true", + "or.covidOnlineBookingAvailabilities.vaccineModerna1": "true" + } + }, + "avecmondoc": { + "enable": true, + "timeout": 25, + "slot_limit": 50, + "week_size": 6, + "recognized_urls": [ + "https://patient.avecmondoc.com/" + ], + "patient_url": "https://patient.avecmondoc.com/fiche/structure/{slug}", + "search_tries": 2, + "api": { + "search": "https://api.avecmondoc.com/api/Doctors/search", + "search_filter": { + "params": "{\"city\": null, \"gps\": null, \"dateBefore\": null}", + "options": "{\"limit\": 1000, \"page\": 1, \"distance\": null}" + }, + "get_doctor_slug": "https://api.avecmondoc.com/api/Doctors/slug/{slug}", + "get_organization_slug": "https://api.avecmondoc.com/api/Organizations/slug/{slug}", + "get_by_organization": "https://api.avecmondoc.com/api/Doctors/getByOrganization/{id}", + "get_by_doctor": "https://api.avecmondoc.com/api/Organizations/getByDoctor/{id}", + "get_reasons": "https://api.avecmondoc.com/api/Organizations/getConsultationReasons", + "availabilities_per_day": "https://api.avecmondoc.com/api/BusinessHours/availabilitiesPerDay" + }, + "filters": { + "valid_reasons": [ + "Premiere injection COVID 19", + "Première injection vaccinale COVID-19", + "Rendez-vous de première vaccination Covid-19", + "1ere vaccination astra", + "Injection vaccinale COVID-19 - Janssen", + "Injection monodose Janssen", + "Injection vaccinale monodose Janssen" + ] + }, + "center_scraper": { + "business_days": { + "1": "Lundi", + "2": "Mardi", + "3": "Mercredi", + "4": "Jeudi", + "5": "Vendredi", + "6": "Samedi", + "0": "Dimanche" + } + } + } + } +} diff --git a/data/input/region-pop.csv b/data/input/dep-pop.csv similarity index 100% rename from data/input/region-pop.csv rename to data/input/dep-pop.csv diff --git a/data/input/map.svg b/data/input/map.svg index 5bdfb7eedc8..1ca588df762 100644 --- a/data/input/map.svg +++ b/data/input/map.svg @@ -1,9 +1,160 @@ - + - + + + + + + + + + + + image/svg+xml + + + + + + + + + + + image/svg+xml + + + + + diff --git a/data/output/info_centres.json b/data/output/info_centres.json new file mode 100644 index 00000000000..88fa53426d4 --- /dev/null +++ b/data/output/info_centres.json @@ -0,0 +1,19606 @@ +{ + "10": { + "version": 1, + "last_updated": "2021-06-10 09:18:10.013046+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "10", + "nom": "Brunnsgårdens vårdcentral, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.86913980363779, + "latitude": 56.1714540982337, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Erik Dahlbergsvägen 30", + "business_hours": null, + "phone_number": "0454-73 27 00" + }, + "prochain_rdv": "2021-06-22 08:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 19, + "internal_id": "580", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Capio Citykliniken, Ronneby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.285538967170696, + "latitude": 56.20298130606912, + "city": "Ronneby", + "cp": "00000" + }, + "metadata": { + "address": "Fridhemsvägen 15", + "business_hours": null, + "phone_number": "0457-340 70" + }, + "prochain_rdv": "2021-06-22 08:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 106, + "internal_id": "591", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Hälsohuset för alla", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.58389613084896, + "latitude": 56.165124322364484, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Västra Vittusgatan 4", + "business_hours": null, + "phone_number": "0455-35 55 00" + }, + "prochain_rdv": "2021-06-10 10:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 25, + "internal_id": "596", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Kallinge vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.287394061779889, + "latitude": 56.2469606234693, + "city": "Ronneby", + "cp": "00000" + }, + "metadata": { + "address": "Gjutarevägen 1-3 Kallinge", + "business_hours": null, + "phone_number": "0457-73 17 90" + }, + "prochain_rdv": "2021-06-10 10:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 36, + "internal_id": "583", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Kungsmarkens vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.622468264447424, + "latitude": 56.19424140502793, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Kungsmarksplan 3", + "business_hours": null, + "phone_number": "0455-61 94 00" + }, + "prochain_rdv": "2021-06-10 13:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": "595", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Lyckeby vårdcentral, Lyckeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.649367373459722, + "latitude": 56.19862527581323, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Källevägen 12", + "business_hours": null, + "phone_number": "0455-73 55 00" + }, + "prochain_rdv": "2021-06-17 13:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 8, + "internal_id": "584", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Läkarhuset i Karlshamn AB, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.864171898010756, + "latitude": 56.171173837721945, + "city": "Karlshamn", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 44", + "business_hours": null, + "phone_number": "0454-395 00" + }, + "prochain_rdv": "2021-06-10 13:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "592", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Nättraby vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.536557149787294, + "latitude": 56.20188840773274, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Kyrkvägen 16", + "business_hours": null, + "phone_number": "0455-73 57 20" + }, + "prochain_rdv": "2021-06-16 16:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 49, + "internal_id": "587", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Olofströmskliniken, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.531238346499302, + "latitude": 56.27719149748354, + "city": "Olofström", + "cp": "29334" + }, + "metadata": { + "address": "Olofströmskliniken, Jämshögsvägen 1, 293 34 Olofström", + "business_hours": null, + "phone_number": "0454-919 99" + }, + "prochain_rdv": "2021-06-22 10:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 32, + "internal_id": "593", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Ronneby vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.269999654288354, + "latitude": 56.20695642418727, + "city": "Ronneby", + "cp": "00000" + }, + "metadata": { + "address": "Götgatan 29 E", + "business_hours": null, + "phone_number": "0457-73 14 00" + }, + "prochain_rdv": "2021-06-10 11:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 26, + "internal_id": "579", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Samariten vårdcentral, Karlshamn", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.851766499969292, + "latitude": 56.1871016915944, + "city": "Karlshamn", + "cp": "37480" + }, + "metadata": { + "address": "Samaritens vårdcentral, Länsmansvägen 1, 374 80 Karlshamn", + "business_hours": null, + "phone_number": "0454-73 34 02" + }, + "prochain_rdv": "2021-06-19 13:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 56, + "internal_id": "577", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "10", + "nom": "Bräkne-Hoby vårdcentral, Bräkne-Hoby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.116567592895079, + "latitude": 56.227310913111644, + "city": "Ronneby", + "cp": "00000" + }, + "metadata": { + "address": "Parkvägen 4", + "business_hours": null, + "phone_number": "0457-73 18 20" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Jämjö vårdcentral, Jämjö", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.833080809564901, + "latitude": 56.189211017141744, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Hammarbyvägen 6", + "business_hours": null, + "phone_number": "0455-73 56 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "575", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Olofströms vårdcentral, Olofström", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.539450332633177, + "latitude": 56.27785063042903, + "city": "Olofström", + "cp": "00000" + }, + "metadata": { + "address": "Rösjövägen 10", + "business_hours": null, + "phone_number": "0454-73 31 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "578", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Rödeby vårdcentral, Rödeby", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.616385809870739, + "latitude": 56.261383044380345, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Movägen 4", + "business_hours": null, + "phone_number": "0455-73 56 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "585", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Sölvesborgs vårdcentral", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.583232678821236, + "latitude": 56.05609832639761, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Markgatan 30", + "business_hours": null, + "phone_number": "0456-73 13 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "576", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Trossö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.589586190296162, + "latitude": 56.160823506192735, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Fortifikationsgatan 9, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 57 55" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "586", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Tvings läkarmottagning, Tving", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.458891376975423, + "latitude": 56.311424366793545, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Rävalyckan 2", + "business_hours": null, + "phone_number": "0455-33 05 05" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "594", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Valjehälsan, Sölvesborg", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 14.55505971137131, + "latitude": 56.04871111917787, + "city": "Sölvesborg", + "cp": "00000" + }, + "metadata": { + "address": "Herrgårdsvägen 97", + "business_hours": null, + "phone_number": "0456-329 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "597", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "10", + "nom": "Wämö vårdcentral, Karlskrona", + "url": "https://www.1177.se/Blekinge/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-blekinge/", + "location": { + "longitude": 15.601673299156976, + "latitude": 56.18196758297442, + "city": "Karlskrona", + "cp": "00000" + }, + "metadata": { + "address": "Byggnad 4, Bättringsvägen, Blekingesjukhuset, Karlskrona", + "business_hours": null, + "phone_number": "0455-73 54 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "581", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "20": { + "version": 1, + "last_updated": "2021-06-10 09:18:57.927834+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "20", + "nom": "Doktor.se / Avesta", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Avesta", + "cp": "00000" + }, + "metadata": { + "address": "Avesta parken, Frejgatan 25", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-07-08 10:36:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2589, + "internal_id": "2114", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Kronans Apotek Malung", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Malung", + "cp": "00000" + }, + "metadata": { + "address": "Lisagatan 37, Malung", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-30 14:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 241, + "internal_id": "2102", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Kronans Apotek Sälen", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Sälen", + "cp": "00000" + }, + "metadata": { + "address": "Centrumhuset, Sälen", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-07-05 10:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 32, + "internal_id": "2101", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Kronans Apotek Säter", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Säter", + "cp": "00000" + }, + "metadata": { + "address": "Östra Långgatan 10, Säter", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-07-02 10:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "2103", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "20", + "nom": "Doktor.se / Borlänge", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Borlänge", + "cp": "00000" + }, + "metadata": { + "address": "Galaxen (Folkets hus), Jussi Björlings väg 25", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2112", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Doktor.se / Falun", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Falun", + "cp": "00000" + }, + "metadata": { + "address": "Kulturhuset Tio14 (Folkets hus), Teatergatan 5", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2111", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Doktor.se / Ludvika", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Ludvika", + "cp": "00000" + }, + "metadata": { + "address": "Sporthallen Ludvika, Tingshusgatan 18", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2115", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "20", + "nom": "Doktor.se / Mora", + "url": "https://www.1177.se/Dalarna/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": "", + "latitude": "", + "city": "Mora", + "cp": "00000" + }, + "metadata": { + "address": "Mora Parken restaurang och konferens, Parkvägen", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2113", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "09": { + "version": 1, + "last_updated": "2021-06-10 09:19:28.987355+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "21": { + "version": 1, + "last_updated": "2021-06-10 09:19:54.234849+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "13": { + "version": 1, + "last_updated": "2021-06-10 09:20:23.844203+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "23": { + "version": 1, + "last_updated": "2021-06-10 09:20:54.441142+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "06": { + "version": 1, + "last_updated": "2021-06-10 09:01:52.446395+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "06", + "nom": "Aneby vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.817662416449679, + "latitude": 57.836546353084785, + "city": "Aneby", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 29, Aneby", + "business_hours": null, + "phone_number": "010-243 38 00" + }, + "prochain_rdv": "2021-06-23 11:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 62, + "internal_id": "1176", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Bodafors vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.702894690529394, + "latitude": 57.506040204363416, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Torget 1, Bodafors", + "business_hours": null, + "phone_number": "010-243 37 00" + }, + "prochain_rdv": "2021-06-22 17:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 148, + "internal_id": "1177", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Eksjö vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.966103278274488, + "latitude": 57.66550311054734, + "city": "Eksjö", + "cp": "00000" + }, + "metadata": { + "address": "Breviksvägen 6, Eksjö", + "business_hours": null, + "phone_number": "010-243 59 25" + }, + "prochain_rdv": "2021-06-24 10:42:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 43, + "internal_id": "1179", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Gränna vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.46789629286442, + "latitude": 58.02616642345095, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hävdevägen 31, Gränna", + "business_hours": null, + "phone_number": "010-242 49 00" + }, + "prochain_rdv": "2021-06-16 13:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 306, + "internal_id": "1183", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 1 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 54 00" + }, + "prochain_rdv": "2021-06-23 09:06:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 118, + "internal_id": "1186", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Kungshälsan vårdcentral, Huskvarna", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.27242696810062, + "latitude": 57.7897280729436, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Huskvarna vårdcentrum, plan 5, Jönköpingsvägen 19, Huskvarna", + "business_hours": null, + "phone_number": "010-242 35 20" + }, + "prochain_rdv": "2021-06-23 14:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 507, + "internal_id": "1198", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Mullsjö vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.88589429818079, + "latitude": 57.92107739299626, + "city": "Mullsjö", + "cp": "00000" + }, + "metadata": { + "address": "Gunnarsbovägen 35, Mullsjö", + "business_hours": null, + "phone_number": "010-242 47 00" + }, + "prochain_rdv": "2021-06-23 13:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 18, + "internal_id": "1194", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Nässjö vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.713115286736578, + "latitude": 57.65509346846896, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Skansgatan 9, Nässjö", + "business_hours": null, + "phone_number": "010-243 31 70" + }, + "prochain_rdv": "2021-06-18 10:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1680, + "internal_id": "1196", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Rosenlund vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.207046075921033, + "latitude": 57.77839529528235, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hermansvägen 5, Jönköping", + "business_hours": null, + "phone_number": "010-242 44 00" + }, + "prochain_rdv": "2021-06-10 14:48:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": "1199", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Rydaholm vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.304028846656465, + "latitude": 56.984216189366975, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Dahlgrens väg, Rydaholm", + "business_hours": null, + "phone_number": "010-244 17 50" + }, + "prochain_rdv": "2021-06-15 11:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 55, + "internal_id": "1200", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Råslätt vårdcentral, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.15085169944695, + "latitude": 57.739040222436465, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Tornfalksgatan 11, Jönköping", + "business_hours": null, + "phone_number": "010-242 37 00" + }, + "prochain_rdv": "2021-06-22 11:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 122, + "internal_id": "1201", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Smålandsstenar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.410842243364137, + "latitude": 57.16360501461046, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Torggatan 6, Smålandsstenar", + "business_hours": null, + "phone_number": "010-244 22 35" + }, + "prochain_rdv": "2021-06-23 18:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 6, + "internal_id": "1203", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Sävsjö vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.657725346980323, + "latitude": 57.40692957957309, + "city": "Sävsjö", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 14, Sävsjö", + "business_hours": null, + "phone_number": "010-243 86 10" + }, + "prochain_rdv": "2021-06-18 11:44:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 255, + "internal_id": "1209", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Tranås vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.987741757498574, + "latitude": 58.042269800955545, + "city": "Tranås", + "cp": "00000" + }, + "metadata": { + "address": "Norra Storgatan 101, Tranås", + "business_hours": null, + "phone_number": "010-243 96 01" + }, + "prochain_rdv": "2021-06-30 14:18:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 12, + "internal_id": "1206", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Vetlanda vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 15.081352462610193, + "latitude": 57.432375422981, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Norrvägen 2 B, Vetlanda", + "business_hours": null, + "phone_number": "010-243 20 10" + }, + "prochain_rdv": "2021-07-07 10:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 152, + "internal_id": "2050", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": "2021-06-23 17:42:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 392, + "internal_id": "1210", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.706270565158187, + "latitude": 57.64878432193302, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Nyhemsgatan 6, Nässjö", + "business_hours": null, + "phone_number": "010-243 39 00" + }, + "prochain_rdv": "2021-06-24 08:56:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1488, + "internal_id": "1225", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Gislehälsan, Gislaved (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.538429392319102, + "latitude": 57.301413472495824, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Regeringsgatan 20, Gislaved", + "business_hours": null, + "phone_number": "010-244 29 49" + }, + "prochain_rdv": "2021-06-22 11:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 86, + "internal_id": "1223", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Läkarhuset Tranås (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.976018999635242, + "latitude": 58.03084473580738, + "city": "Tranås", + "cp": "00000" + }, + "metadata": { + "address": "Vasagatan 1, Tranås", + "business_hours": null, + "phone_number": "010-243 98 60" + }, + "prochain_rdv": "2021-06-23 14:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 108, + "internal_id": "1236", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": "2021-06-24 11:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 42, + "internal_id": "1259", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "06", + "nom": "Aneby vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.817662416449679, + "latitude": 57.836546353084785, + "city": "Aneby", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 29, Aneby", + "business_hours": null, + "phone_number": "010-243 38 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1517", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Bankeryd vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.126404129292839, + "latitude": 57.862036664557394, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Sjöåkravägen 18, Bankeryd", + "business_hours": null, + "phone_number": "010-242 38 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1175", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Bodafors vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.702894690529394, + "latitude": 57.506040204363416, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Torget 1, Bodafors", + "business_hours": null, + "phone_number": "010-243 37 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1192", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Eksjö vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.966103278274488, + "latitude": 57.66550311054734, + "city": "Eksjö", + "cp": "00000" + }, + "metadata": { + "address": "Breviksvägen 6, Eksjö", + "business_hours": null, + "phone_number": "010-243 59 25" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1189", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Gislaved vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.537324802106674, + "latitude": 57.30506731866744, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Norra Långgatan 25, Gislaved", + "business_hours": null, + "phone_number": "010-244 20 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1181", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Gnosjö vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.740003220192987, + "latitude": 57.35573378899504, + "city": "Gnosjö", + "cp": "00000" + }, + "metadata": { + "address": "Järnvägsgatan 49, Gnosjö", + "business_hours": null, + "phone_number": "010-244 80 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1182", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Gränna vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.46789629286442, + "latitude": 58.02616642345095, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hävdevägen 31, Gränna", + "business_hours": null, + "phone_number": "010-242 49 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1499", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Habo vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.090684110997172, + "latitude": 57.90910068255196, + "city": "Habo", + "cp": "00000" + }, + "metadata": { + "address": "Kärrsvägen 37, Habo", + "business_hours": null, + "phone_number": "010-242 48 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1184", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Hälsan 2 vårdcentral, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.158432109596234, + "latitude": 57.77947881924537, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsans vårdcentrum, Fabriksgatan 17, Jönköping", + "business_hours": null, + "phone_number": "010-242 58 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1187", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Landsbro vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Valåkravägen 1, Landsbro", + "business_hours": null, + "phone_number": "010-243 25 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1507", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Landsbro vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.912555900408043, + "latitude": 57.370543731867315, + "city": "Vetlanda", + "cp": "00000" + }, + "metadata": { + "address": "Valåkravägen 1, Landsbro", + "business_hours": null, + "phone_number": "010-243 25 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1190", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1494", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Norrahammar vårdcentral (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.117167961555985, + "latitude": 57.70371528734357, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 1, Norrahammar", + "business_hours": null, + "phone_number": "010-242 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1195", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Nässjö vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.713115286736578, + "latitude": 57.65509346846896, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Skansgatan 9, Nässjö", + "business_hours": null, + "phone_number": "010-243 31 70" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1191", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Rydaholm vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.304028846656465, + "latitude": 56.984216189366975, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Dahlgrens väg, Rydaholm", + "business_hours": null, + "phone_number": "010-244 17 50" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1178", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Råslätt vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.15085169944695, + "latitude": 57.739040222436465, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Tornfalksgatan 11, Jönköping", + "business_hours": null, + "phone_number": "010-242 37 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1493", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Smålandsstenar vårdcentral (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.410842243364137, + "latitude": 57.16360501461046, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Torggatan 6, Smålandsstenar", + "business_hours": null, + "phone_number": "010-244 22 35" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1197", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Vaggeryd vårdcentral", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.133885805545892, + "latitude": 57.4922193343132, + "city": "Vaggeryd", + "cp": "00000" + }, + "metadata": { + "address": "Lundavägen 23, Vaggeryd", + "business_hours": null, + "phone_number": "010-244 05 70" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1207", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bra Liv Vråen vårdcentral, Värnamo (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.06769175799465, + "latitude": 57.18215050776865, + "city": "Värnamo", + "cp": "00000" + }, + "metadata": { + "address": "Vråenvägen 31, Värnamo", + "business_hours": null, + "phone_number": "010-244 30 15" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1218", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni Nyhälsan Forserum filial (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.4775813245743, + "latitude": 57.70282981263284, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Lillsjövägen 12, Forserum", + "business_hours": null, + "phone_number": "010-243 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1511", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni Nyhälsan Forserum filial (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.4775813245743, + "latitude": 57.70282981263284, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Lillsjövägen 12, Forserum", + "business_hours": null, + "phone_number": "010-243 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1294", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1509", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Lokstallarna, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.150961812634723, + "latitude": 57.78769726541282, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kortebovägen 6, Jönköping", + "business_hours": null, + "phone_number": "010-242 89 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1224", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Bräcke Diakoni vårdcentralen Nyhälsan Nässjö (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.706270565158187, + "latitude": 57.64878432193302, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Nyhemsgatan 6, Nässjö", + "business_hours": null, + "phone_number": "010-243 39 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1510", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Gislehälsan, Gislaved (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 13.538429392319102, + "latitude": 57.301413472495824, + "city": "Gislaved", + "cp": "00000" + }, + "metadata": { + "address": "Regeringsgatan 20, Gislaved", + "business_hours": null, + "phone_number": "010-244 29 49" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1521", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Läkarhuset Tranås (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.976018999635242, + "latitude": 58.03084473580738, + "city": "Tranås", + "cp": "00000" + }, + "metadata": { + "address": "Vasagatan 1, Tranås", + "business_hours": null, + "phone_number": "010-243 98 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1520", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Nässjö Läkarhus (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.691821984274767, + "latitude": 57.6595321738957, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Mariagatan 30, Nässjö", + "business_hours": null, + "phone_number": "010-243 28 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1519", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Nässjö Läkarhus (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.691821984274767, + "latitude": 57.6595321738957, + "city": "Nässjö", + "cp": "00000" + }, + "metadata": { + "address": "Mariagatan 30, Nässjö", + "business_hours": null, + "phone_number": "010-243 28 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1235", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Unicare Läkarhuset Väster vårdcentralsfilial Jönköping (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.163034896807421, + "latitude": 57.78214287016117, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Barnarpsgatan 13, Jönköping", + "business_hours": null, + "phone_number": "010-242 84 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1300", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Wasa vårdcentral, Jönköping (18+ LSS/assistans/vårdnära)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.536940894451295, + "latitude": 58.381664894315385, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kungsängstorget 4, Kungsängen, Jönköping", + "business_hours": null, + "phone_number": "010-242 88 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1518", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Wasa vårdcentral, Jönköping (åldersgrupp eller riksgrupp)", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.536940894451295, + "latitude": 58.381664894315385, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "Kungsängstorget 4, Kungsängen, Jönköping", + "business_hours": null, + "phone_number": "010-242 88 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1256", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "06", + "nom": "Wetterhälsan, Jönköping", + "url": "https://www.1177.se/Jonkopings-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/nar-och-hur-kan-jag-vaccinera-mig-mot-covid-19/", + "location": { + "longitude": 14.202817404995903, + "latitude": 57.76798763943383, + "city": "Jönköping", + "cp": "00000" + }, + "metadata": { + "address": "A6: Batterigatan 9, Jönköping, Atollen: Lantmätargränd 59, Jönköping, Munksjöstaden: Barnarpsgatan 111, Jönköping", + "business_hours": null, + "phone_number": "010-242 66 77" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1313", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "08": { + "version": 1, + "last_updated": "2021-06-10 09:05:29.554504+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "08", + "nom": "Blomstermåla hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.33309445323957, + "latitude": 56.980970711482186, + "city": "Mönsterås", + "cp": "00000" + }, + "metadata": { + "address": "Stationsgatan 2, Blomstermåla", + "business_hours": null, + "phone_number": "0499-209 30" + }, + "prochain_rdv": "2021-06-17 08:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 83, + "internal_id": "521", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Hultsfreds hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.842211833484315, + "latitude": 57.48814139634313, + "city": "Hultsfred", + "cp": "00000" + }, + "metadata": { + "address": "Västra Långgatan 46, Hultsfred", + "business_hours": null, + "phone_number": "0495-155 02" + }, + "prochain_rdv": "2021-06-15 18:35:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 14, + "internal_id": "505", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Högsby hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.025529740353928, + "latitude": 57.171486143323655, + "city": "Högsby", + "cp": "00000" + }, + "metadata": { + "address": "Dr Mobergers väg 6, Högsby", + "business_hours": null, + "phone_number": "0491-283 00" + }, + "prochain_rdv": "2021-06-16 11:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 7, + "internal_id": "519", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Mörbylånga hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.396170171292617, + "latitude": 56.52222220802543, + "city": "Mörbylånga", + "cp": "00000" + }, + "metadata": { + "address": "Rönningevägen 2, Mörbylånga", + "business_hours": null, + "phone_number": "0485-491 00" + }, + "prochain_rdv": "2021-06-16 13:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 181, + "internal_id": "500", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Torsås hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.996726089216628, + "latitude": 56.4113261043122, + "city": "Torsås", + "cp": "00000" + }, + "metadata": { + "address": "Badhusgatan 20, Torsås", + "business_hours": null, + "phone_number": "0486-412 30" + }, + "prochain_rdv": "2021-06-17 09:55:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 126, + "internal_id": "493", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Kalmar", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.35640759555987, + "latitude": 56.66417229353723, + "city": "Kalmar", + "cp": "00000" + }, + "metadata": { + "address": "Tullslätten 4, Kalmar", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": "2021-06-10 15:28:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1823, + "internal_id": "1546", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Oskarshamn", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.433293539951787, + "latitude": 57.26561125193819, + "city": "Oskarshamn", + "cp": "00000" + }, + "metadata": { + "address": "Döderhultsvägen 26-28, Oskarshamn", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": "2021-06-16 10:36:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 760, + "internal_id": "2053", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Västervik", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.63873172343222, + "latitude": 57.757591327850086, + "city": "Västervik", + "cp": "00000" + }, + "metadata": { + "address": "Spötorget 1, Västervik", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": "2021-06-15 14:09:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4101, + "internal_id": "1547", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Vimmerby hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.858660065659615, + "latitude": 57.668227743684724, + "city": "Vimmerby", + "cp": "00000" + }, + "metadata": { + "address": "Drottninggatan 22, Vimmerby", + "business_hours": null, + "phone_number": "0492-176 00" + }, + "prochain_rdv": "2021-06-17 11:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 177, + "internal_id": "491", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "08", + "nom": "Ankarsrums hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.333555295363333, + "latitude": 57.699563322789174, + "city": "Västervik", + "cp": "00000" + }, + "metadata": { + "address": "Kungsvägen 40, Ankarsrum", + "business_hours": null, + "phone_number": "0490-504 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "520", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Astrakanen Emmaboda läkarcentrum", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.540197992566172, + "latitude": 56.63137271007867, + "city": "Emmaboda", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 15, Emmaboda", + "business_hours": null, + "phone_number": "0471-79 91 11" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "528", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Astrakanen läkarcentrum Nybro", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.912165806501925, + "latitude": 56.74436875452638, + "city": "Nybro", + "cp": "00000" + }, + "metadata": { + "address": "Tunnelgatan 8, Nybro", + "business_hours": null, + "phone_number": "0481-696 96" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "526", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Blå Kustens hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.422405091310075, + "latitude": 57.26364466199942, + "city": "Oskarshamn", + "cp": "00000" + }, + "metadata": { + "address": "Rösvägen 1, Oskarshamn", + "business_hours": null, + "phone_number": "0491-78 20 91" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "488", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Borgholms hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.6629988395173, + "latitude": 56.88118038491814, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Resedan 1, Borgholm", + "business_hours": null, + "phone_number": "0485-151 20" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "490", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Cityläkarna i Nybro", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.91011942888134, + "latitude": 56.74309528394747, + "city": "Nybro", + "cp": "00000" + }, + "metadata": { + "address": "Stora Nygatan 15, Nybro", + "business_hours": null, + "phone_number": "0481-49 07 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "525", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Cityläkarna i Oskarshamn", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.44876461698304, + "latitude": 57.264168219301204, + "city": "Oskarshamn", + "cp": "00000" + }, + "metadata": { + "address": "Stora Torget 3, Oskarshamn", + "business_hours": null, + "phone_number": "0491-708 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "529", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Emmaboda hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.536922734414482, + "latitude": 56.63139260693963, + "city": "Emmaboda", + "cp": "00000" + }, + "metadata": { + "address": "Rådhusgatan 12, Emmaboda", + "business_hours": null, + "phone_number": "0471-185 14" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "506", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Gamleby hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.39940361635937, + "latitude": 57.89769680999943, + "city": "Västervik", + "cp": "00000" + }, + "metadata": { + "address": "Centrum, Gamleby", + "business_hours": null, + "phone_number": "0493-130 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "516", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Gripens hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.443856103183354, + "latitude": 57.26495648481284, + "city": "Oskarshamn", + "cp": "00000" + }, + "metadata": { + "address": "Köpmangatan 14, Oskarshamn", + "business_hours": null, + "phone_number": "0491-78 22 23" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "495", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Kristinebergs hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.466201540936055, + "latitude": 57.25039279541824, + "city": "Oskarshamn", + "cp": "00000" + }, + "metadata": { + "address": "Ingenjörsvägen 26, Oskarshamn", + "business_hours": null, + "phone_number": "0491-78 25 50" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "513", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Lindsdals hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.29539344333584, + "latitude": 56.734330378096026, + "city": "Kalmar", + "cp": "00000" + }, + "metadata": { + "address": "Förlösavägen 4, Kalmar", + "business_hours": null, + "phone_number": "0480-819 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "518", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Ljungbyholms hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.17286991496342, + "latitude": 56.63362285475361, + "city": "Kalmar", + "cp": "00000" + }, + "metadata": { + "address": "Tunnbindarevägen 4, Ljungbyholm", + "business_hours": null, + "phone_number": "0480-819 25" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "496", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Läkarmottagning Dorrit Ruge", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.58098163429231, + "latitude": 57.32054440829297, + "city": "Hultsfred", + "cp": "00000" + }, + "metadata": { + "address": "Södra Järnvägsgatan 5, Virserum", + "business_hours": null, + "phone_number": "0495-316 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "510", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Löttorps hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.98853903202339, + "latitude": 57.165777189829655, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Löttorpsvägen 63, Löttorp", + "business_hours": null, + "phone_number": "0485-151 20" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "494", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Mönsterås hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.436708819482035, + "latitude": 57.035449569659825, + "city": "Mönsterås", + "cp": "00000" + }, + "metadata": { + "address": "Allégatan 1, Mönsterås", + "business_hours": null, + "phone_number": "0499-489 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "492", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Mörlunda hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.86393537513817, + "latitude": 57.31718605791332, + "city": "Hultsfred", + "cp": "00000" + }, + "metadata": { + "address": "Doktorsvägen 6, Mörlunda", + "business_hours": null, + "phone_number": "0495-236 40" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "515", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Nybro hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.91133031488841, + "latitude": 56.74365104347946, + "city": "Nybro", + "cp": "00000" + }, + "metadata": { + "address": "Tunnelgatan 6, Nybro", + "business_hours": null, + "phone_number": "0481-447 60" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "499", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Smedby hälsocentral", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.231942415356176, + "latitude": 56.68159696651928, + "city": "Kalmar", + "cp": "00000" + }, + "metadata": { + "address": "Ingelstorpsvägen 1, Kalmar", + "business_hours": null, + "phone_number": "0480-818 70" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "498", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Vaccinationscentral covid-19 Borgholm", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 16.64780260606582, + "latitude": 56.87868831899666, + "city": "Borgholm", + "cp": "00000" + }, + "metadata": { + "address": "Villagatan 4, Borgholm", + "business_hours": null, + "phone_number": "0480-844 44" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2056", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "08", + "nom": "Virserums läkarhus", + "url": "https://www.1177.se/Kalmar-lan/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-kalmar-lan/", + "location": { + "longitude": 15.580898371315072, + "latitude": 57.32058915623204, + "city": "Hultsfred", + "cp": "00000" + }, + "metadata": { + "address": "Södra Järnvägsgatan 5, Virserum", + "business_hours": null, + "phone_number": "0495-310 05" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "508", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "07": { + "version": 1, + "last_updated": "2021-06-10 09:06:17.522477+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "07", + "nom": "Aktivitetshuset", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.1297382, + "latitude": 56.5491377, + "city": "Älmhult", + "cp": "34336" + }, + "metadata": { + "address": "Ikeagatan 8, 343 36 Älmhult", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-12 09:50:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 126, + "internal_id": 29997, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Folkets Hus", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.5515003, + "latitude": 56.9011986, + "city": "Alvesta", + "cp": "34230" + }, + "metadata": { + "address": "Allbogatan 15, 342 30 Alvesta", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-12 10:15:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 64, + "internal_id": 29999, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Garvaren", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.9309756, + "latitude": 56.83242, + "city": "Ljungby", + "cp": "34160" + }, + "metadata": { + "address": "Stationsgatan 2, 341 60 Ljungby", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 11:40:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 142, + "internal_id": 30000, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Lillgatan 1, lokal ovan Åseda bilservice AB", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 15.3520379, + "latitude": 57.1664611, + "city": "Uppvidinge", + "cp": "00000" + }, + "metadata": { + "address": "Lillgatan 1, lokal ovan Åseda bilservice AB", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-23 13:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 9, + "internal_id": "1556", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Storgatan 71 A, brevid apoteket", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 15.2681225, + "latitude": 56.7515014, + "city": "Lessebo", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 71 A, brevid apoteket", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-16 09:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 52, + "internal_id": "2052", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Tingsryds Folkpark", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.952075, + "latitude": 56.5269524, + "city": "Tingsryd", + "cp": "36291" + }, + "metadata": { + "address": "120, 362 91 Tingsryd", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 09:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 49, + "internal_id": "1557", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Tipshallen, västra sidan", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.7739842, + "latitude": 56.8813345, + "city": "Växjö", + "cp": "35246" + }, + "metadata": { + "address": "Bollgatan 1, 352 46 Växjö", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": "2021-06-10 09:28:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 3927, + "internal_id": "2063", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "07", + "nom": "Nibehallen", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.5868415, + "latitude": 56.4505806, + "city": "Markaryd", + "cp": "28532" + }, + "metadata": { + "address": "Järnvägsgatan 17, 285 32 Markaryd", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "", + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Previa", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.7761692, + "latitude": 56.8779855, + "city": "Växjö", + "cp": "35236" + }, + "metadata": { + "address": "Honnörsgatan 16, 352 36 Växjö", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "", + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Achima Care Vislanda", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.450194438703102, + "latitude": 56.78650692240394, + "city": "Alvesta", + "cp": "34250" + }, + "metadata": { + "address": "Gröna Gatan 8-10, 342 50 Vislanda", + "business_hours": null, + "phone_number": "0472-65 09 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Achima Care Växjö, Växjö", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.797982221366297, + "latitude": 56.87915992912494, + "city": "Växjö", + "cp": "35232" + }, + "metadata": { + "address": "Besöksadress vårdcentralen - Lärkgatan 4 E, 352 32 Växjö, Besöksadress BVC och Specialistvården - Storgatan 42, 352 32 Växjö", + "business_hours": null, + "phone_number": "0470-33 97 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Achima Care Älmhult, Älmhult", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.141156788034609, + "latitude": 56.54753030885746, + "city": "Älmhult", + "cp": "34332" + }, + "metadata": { + "address": "Älmhults Vårdcentral, Kungsgatan 14, 343 32 Älmhult", + "business_hours": null, + "phone_number": "0476-65 08 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Capio Hovshaga, Hovshaga centrum", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.798416797897593, + "latitude": 56.90932912766061, + "city": "Växjö", + "cp": "35261" + }, + "metadata": { + "address": "Pomonavägen 2, 352 61 Växjö", + "business_hours": null, + "phone_number": "0470-75 91 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Helsa Älmhult, Älmhult", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.134719894842894, + "latitude": 56.554485786574254, + "city": "Älmhult", + "cp": "34336" + }, + "metadata": { + "address": "Gotthards gata 5, 343 36 Älmhult", + "business_hours": null, + "phone_number": "0476-64 66 10" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Läkarhuset Ljungby, Ljungby", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 13.932835828843768, + "latitude": 56.834069785471414, + "city": "Ljungby", + "cp": "34135" + }, + "metadata": { + "address": "Kristina Nilssonsgatan 2, 34135 Ljungby", + "business_hours": null, + "phone_number": "0372-155 80" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Unicare, Växjö", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.803674030226688, + "latitude": 56.87486811679097, + "city": "Växjö", + "cp": "00000" + }, + "metadata": { + "address": "Vårdcentralen Unicare på söder i Växjö, Trädgårdsgatan 10", + "business_hours": null, + "phone_number": "0470-70 65 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "07", + "nom": "Vårdcentralen Växjöhälsan Växjö, Växjö", + "url": "https://www.1177.se/Kronoberg/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-i-kronoberg/", + "location": { + "longitude": 14.819201332642793, + "latitude": 56.90676491216361, + "city": "Växjö", + "cp": "35245" + }, + "metadata": { + "address": "Hjortvägen 1, 352 45 Växjö", + "business_hours": null, + "phone_number": "0470-73 81 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "25": { + "version": 1, + "last_updated": "2021-06-10 09:06:46.966958+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [ + { + "departement": "25", + "nom": "Vaccinationsmottagningen Arjeplog", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 17.890838225373635, + "latitude": 66.05002311982224, + "city": "Arjeplog", + "cp": "00000" + }, + "metadata": { + "address": "Facklan, Dr Wallqvist väg 3B, Arjeplog", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Arvidsjaur", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 19.172567784896266, + "latitude": 65.59307299449553, + "city": "Arvidsjaur", + "cp": "00000" + }, + "metadata": { + "address": "Medan, Storgatan 12, Arvidsjaur", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Boden", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 21.664154199662725, + "latitude": 65.82314581180988, + "city": "Boden", + "cp": "00000" + }, + "metadata": { + "address": "f.d. Vårdhögskolan, Hedenbrovägen 2C, Boden", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Gällivare", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 20.687146002957565, + "latitude": 67.1310047562662, + "city": "Gällivare", + "cp": "00000" + }, + "metadata": { + "address": "Centralförrådet, Källgatan 14, Gällivare sjukhus", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Haparanda", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 24.135106484478833, + "latitude": 65.83822647482017, + "city": "Haparanda", + "cp": "00000" + }, + "metadata": { + "address": "Haparanda hälsocentral, Lasarettsgatan 34, Haparanda", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Jokkmokk", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 19.843505362021933, + "latitude": 66.60207137640295, + "city": "Jokkmokk", + "cp": "00000" + }, + "metadata": { + "address": "Folkets hus, Föreningsgatan 8, Jokkmokk", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Kalix", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 23.163297021538487, + "latitude": 65.85021830548446, + "city": "Kalix", + "cp": "00000" + }, + "metadata": { + "address": "Sportcity, Centrumvägen 74, Kalix", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Kiruna", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 20.245199994763585, + "latitude": 67.84073539486273, + "city": "Kiruna", + "cp": "00000" + }, + "metadata": { + "address": "Lombia ishall, Lombiavägen 4, Kiruna", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Luleå", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 22.147326948244366, + "latitude": 65.59758833918862, + "city": "Luleå", + "cp": "00000" + }, + "metadata": { + "address": "Coop Arena, Midgårdsvägen 4, Luleå", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Pajala", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 23.371196974791133, + "latitude": 67.2089525288792, + "city": "Pajala", + "cp": "00000" + }, + "metadata": { + "address": "Folkets hus, Fridhemsvägen 1A, Pajala", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Piteå", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 21.491402322621358, + "latitude": 65.32070553913984, + "city": "Piteå", + "cp": "00000" + }, + "metadata": { + "address": "Piteå Energi Arena (Nolia området) Noliagatan 1, Piteå", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Älvsbyn", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 21.00320229860984, + "latitude": 65.67431044981623, + "city": "Älvsbyn", + "cp": "00000" + }, + "metadata": { + "address": "Forum Folkets hus, Medborgargatan 2, Älvsbyn", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Överkalix", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 22.848487102428123, + "latitude": 66.3387568600528, + "city": "Överkalix", + "cp": "00000" + }, + "metadata": { + "address": "Överkalix hälsocentral, Tallviksvägen 31, Överkalix", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "25", + "nom": "Vaccinationsmottagningen Övertorneå", + "url": "https://www.1177.se/Norrbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-i-norrbotten/", + "location": { + "longitude": 23.64828409745047, + "latitude": 66.38308322218411, + "city": "Övertorneå", + "cp": "00000" + }, + "metadata": { + "address": "Folkets hus, Industrivägen 3, Övertorneå", + "business_hours": null, + "phone_number": "010-452 63 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "12": { + "version": 1, + "last_updated": "2021-06-10 09:43:19.210506+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "12", + "nom": "Berga Läkarhus, Helsingborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Berga-Lakarhus-Helsingborg/", + "location": { + "longitude": 12.710842758526377, + "latitude": 56.0638806521683, + "city": "Helsingborg", + "cp": "00000" + }, + "metadata": { + "address": "Rundgången 26, Helsingborg", + "business_hours": null, + "phone_number": "042-15 50 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 116, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Clarion Hotel Sea U", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 12.687659, + "latitude": 56.0459685, + "city": "Helsingborg", + "cp": "25221" + }, + "metadata": { + "address": "Kungsgatan 1, 252 21 Helsingborg", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 143, + "internal_id": 30007, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Doktor se Klippan Vaccinationsenhet", + "url": "https://bokning.mittvaccin.se/klinik/231", + "location": { + "longitude": 13.131591307620328, + "latitude": 56.13525910844287, + "city": "Klippan", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 19, Klippan", + "business_hours": null + }, + "prochain_rdv": "2021-06-21 10:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 164, + "internal_id": "231", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Elite Hotel Ideon", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 13.1963902, + "latitude": 55.7176698, + "city": "Lund", + "cp": "22363" + }, + "metadata": { + "address": "Scheelevägen 27, 223 63 Lund", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 143, + "internal_id": 30009, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Kronans Apotek Båstad", + "url": "https://bokning.mittvaccin.se/klinik/1535", + "location": { + "longitude": 12.837022713078733, + "latitude": 56.433153288605794, + "city": "Båstad", + "cp": "00000" + }, + "metadata": { + "address": "Kyrkogatan 21, Båstad", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": "2021-06-21 10:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 92, + "internal_id": "1535", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Kronans Apotek Höör", + "url": "https://bokning.mittvaccin.se/klinik/1538", + "location": { + "longitude": 13.540319233929354, + "latitude": 55.93385874871056, + "city": "Höör", + "cp": "00000" + }, + "metadata": { + "address": "Föreningsgatan 7, Höör", + "business_hours": null + }, + "prochain_rdv": "2021-06-29 10:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 73, + "internal_id": "1538", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Kronans Apotek Ängelholm", + "url": "https://bokning.mittvaccin.se/klinik/1534", + "location": { + "longitude": 12.863032774480866, + "latitude": 56.24253762960139, + "city": "Ängelholm", + "cp": "00000" + }, + "metadata": { + "address": "Laxgatan 6, Ängelholm", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": "2021-07-02 10:25:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 118, + "internal_id": "1534", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Arlöv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Arlov/", + "location": { + "longitude": 13.082744179056563, + "latitude": 55.64496367176085, + "city": "Burlöv", + "cp": "00000" + }, + "metadata": { + "address": "Företagsvägen 29, Arlöv", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 142, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Hässleholm", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Hassleholm/", + "location": { + "longitude": 13.77676231700418, + "latitude": 56.155208336309215, + "city": "Hässleholm", + "cp": "00000" + }, + "metadata": { + "address": "Östra Hagagatan 2, Hässleholm", + "business_hours": null, + "phone_number": "010-330 04 43" + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 402, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Hörby", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Horby/", + "location": { + "longitude": 13.685091759872158, + "latitude": 55.86245628529676, + "city": "Hörby", + "cp": "00000" + }, + "metadata": { + "address": "Silvergatan 4, Hörby", + "business_hours": null, + "phone_number": "010-330 04 43" + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 981, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Osby", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Osby/", + "location": { + "longitude": 13.991146252719732, + "latitude": 56.380297879671815, + "city": "Osby", + "cp": "00000" + }, + "metadata": { + "address": "Fabriksgatan 7, Osby", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 92, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Sjöbo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Sjobo/", + "location": { + "longitude": 13.693634123512222, + "latitude": 55.635076880844345, + "city": "Sjöbo", + "cp": "00000" + }, + "metadata": { + "address": "Industrigatan 1C, Sjöbo", + "business_hours": null, + "phone_number": "073-143 84 58" + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Skurup", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Skurup/", + "location": { + "longitude": 13.503898394470399, + "latitude": 55.475824351719375, + "city": "Skurup", + "cp": "00000" + }, + "metadata": { + "address": "Vaktgatan 10, Skurup", + "business_hours": null, + "phone_number": "010-330 04 43" + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 9, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Svalöv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Svalov/", + "location": { + "longitude": 13.108292309388082, + "latitude": 55.912696847709256, + "city": "Svalöv", + "cp": "00000" + }, + "metadata": { + "address": "Herrevadsgatan 10A, Svalöv", + "business_hours": null, + "phone_number": "010-330 04 43" + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 147, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Ängelholm", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Angelholm/", + "location": { + "longitude": 12.8446722534569, + "latitude": 56.28698187117768, + "city": "Ängelholm", + "cp": "00000" + }, + "metadata": { + "address": "Stjernsvärds allé 51, Ängelholm", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "MACC Östra Göinge", + "url": "https://www.1177.se/hitta-vard/kontaktkort/MACC-Ostra-Goinge/", + "location": { + "longitude": 14.07612809119283, + "latitude": 56.25910974656744, + "city": "Östra Göinge", + "cp": "00000" + }, + "metadata": { + "address": "Pappersbruksvägen 4, Broby", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MACC", + "type": "vaccination-center", + "appointment_count": 139, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Quality Hotel View", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 12.9568331, + "latitude": 55.5624905, + "city": "Malmö", + "cp": "21532" + }, + "metadata": { + "address": "Hyllie stationstorg, 215 32 Malmö", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 143, + "internal_id": 30008, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Södra Storgatan 17", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 12.9188332, + "latitude": 56.083099, + "city": "Bjuv", + "cp": "26731" + }, + "metadata": { + "address": "Södra Storgatan 17, 267 31 Bjuv", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 143, + "internal_id": 31153, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinationsmottagning Perstorp", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccinationsmottagning-Perstorp/", + "location": { + "longitude": 13.388646372898863, + "latitude": 56.130281197772746, + "city": "Perstorp", + "cp": "00000" + }, + "metadata": { + "address": "Räddningsvägen 8C, Perstorp", + "business_hours": null, + "phone_number": "046-17 18 38" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 35, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Victoria Vård och Hälsa Kalkbrottet, Limhamn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Victoria-Vard-och-Halsa-Kalkbrottet-Limhamn/", + "location": { + "longitude": 12.933095433276115, + "latitude": 55.572796864685735, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Lilla Högestensgatan 2, Limhamn", + "business_hours": null, + "phone_number": "040-602 80 30" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 92, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Östra Boulevarden 56 (Gamla Intersport)", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 14.1411717, + "latitude": 56.0295719, + "city": "Kristianstad", + "cp": "29131" + }, + "metadata": { + "address": "Östra Boulevarden 56, 291 31 Kristianstad", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 143, + "internal_id": 30011, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "12", + "nom": "Akutmottagning Trelleborg", + "url": "https://bokning.mittvaccin.se/klinik/230", + "location": { + "longitude": 13.161081419691643, + "latitude": 55.3812931778886, + "city": "Trelleborg", + "cp": "00000" + }, + "metadata": { + "address": "Frans Malmrosgatan 10, Trelleborg", + "business_hours": null, + "phone_number": "0410-550 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "230", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Doktor 24 Segevångsskolan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Doktor-24-Segevangsskolan/", + "location": { + "longitude": 13.053706286342507, + "latitude": 55.617924591881966, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Segevångsgatan 4, Malmö", + "business_hours": null, + "phone_number": "010-410 23 24" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Hälsomedicinskt Center i Hjärup", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsomedicinskt-Center-i-Hjarup/", + "location": { + "longitude": 13.139701468226122, + "latitude": 55.66954135627838, + "city": "Staffanstorp", + "cp": "00000" + }, + "metadata": { + "address": "Fredriks väg 1, Hjärup", + "business_hours": null, + "phone_number": "040-41 80 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Hälsomedicinskt Center i Landskrona", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsomedicinskt-Center-i-Landskrona/", + "location": { + "longitude": 12.837338900772485, + "latitude": 55.86791805308507, + "city": "Landskrona", + "cp": "00000" + }, + "metadata": { + "address": "Industrigatan 68, Landskrona", + "business_hours": null, + "phone_number": "0418-48 27 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Hälsomedicinskt Center i Lomma", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsomedicinskt-Center-i-Lomma/", + "location": { + "longitude": 13.061973404891575, + "latitude": 55.67726189415099, + "city": "Lomma", + "cp": "00000" + }, + "metadata": { + "address": "Esplanaden 15, Lomma", + "business_hours": null, + "phone_number": "040-41 80 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Hälsomedicinskt Center i Staffanstorp", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsomedicinskt-Center-i-Staffanstorp/", + "location": { + "longitude": 13.21310185718876, + "latitude": 55.64096969227716, + "city": "Staffanstorp", + "cp": "00000" + }, + "metadata": { + "address": "Malmövägen 2, Staffanstorp", + "business_hours": null, + "phone_number": "040-41 80 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Hälsomedicinskt center Vårdcentral i Bjärred", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsomedicinskt-center-Vardcentral-i-Bjarred/", + "location": { + "longitude": 13.029210372634356, + "latitude": 55.7181458921566, + "city": "Lomma", + "cp": "00000" + }, + "metadata": { + "address": "Norra Västkustvägen 4, Bjärred", + "business_hours": null, + "phone_number": "040-41 80 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "KRY Vårdcentral Lund Filial Stortorget, Malmö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/KRY-Vardcentral-Lund-Filial-Stortorget-Malmo/", + "location": { + "longitude": 13.000495417979417, + "latitude": 55.60686975311932, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Stortorget 3, Malmö", + "business_hours": null, + "phone_number": "010-424 05 91" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Kry Lund", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kry-Lund/", + "location": { + "longitude": 13.192358168662008, + "latitude": 55.701682450974985, + "city": "Lund", + "cp": "00000" + }, + "metadata": { + "address": "Stora Södergatan 6A, Lund", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Kry vaccinationsenhet, Malmö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kry-vaccinationsenhet-Malmo/", + "location": { + "longitude": 13.003685880859962, + "latitude": 55.595971123002606, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Spångatan 3, Malmö", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Kävlinge Tandvård, Kävlinge", + "url": "https://bokning.mittvaccin.se/klinik/2048", + "location": { + "longitude": 13.1089287825756, + "latitude": 55.79037731336482, + "city": "Kävlinge", + "cp": "00000" + }, + "metadata": { + "address": "Unionsgatan 7, Kävlinge", + "business_hours": null, + "phone_number": "046-73 54 50" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2048", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Logopedmottagning Landskrona", + "url": "https://bokning.mittvaccin.se/klinik/2047", + "location": { + "longitude": 12.841158725067878, + "latitude": 55.87755327591269, + "city": "Landskrona", + "cp": "00000" + }, + "metadata": { + "address": "Vattenverksallén 15, Landskrona", + "business_hours": null, + "phone_number": "0418-45 42 88" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2047", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Min Doktor STADIONMÄSSAN", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Min-Doktor-STADIONMASSAN/", + "location": { + "longitude": 12.991283878021942, + "latitude": 55.58102198934759, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Stadiongatan 25A, Malmö", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Näsets Läkargrupp- Filial Specialmottagning, Höllviken", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Nasets-Lakargrupp-Filial-Specialmottagning-Hollviken/", + "location": { + "longitude": 12.951769185524748, + "latitude": 55.41831416733226, + "city": "Vellinge", + "cp": "00000" + }, + "metadata": { + "address": "Falsterbovägen 79B, Höllviken", + "business_hours": null, + "phone_number": "040-45 62 72" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Solljungahälsan, Örkelljunga", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Solljungahalsan-Orkelljunga-1/", + "location": { + "longitude": 13.28098597910582, + "latitude": 56.281596651484406, + "city": "Örkelljunga", + "cp": "00000" + }, + "metadata": { + "address": "David Anders Gata 4, Örkelljunga", + "business_hours": null, + "phone_number": "0435-78 24 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Svea Vaccin Helsingborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-Vaccin-Helsingborg/", + "location": { + "longitude": 12.711644148796147, + "latitude": 56.03484851039608, + "city": "Helsingborg", + "cp": "00000" + }, + "metadata": { + "address": "Gåsebäcksvägen 10, Helsingborg", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Svea Vaccin Kristianstad", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-Vaccin-Kristianstad/", + "location": { + "longitude": 14.162744876750878, + "latitude": 56.02304476978394, + "city": "Kristianstad", + "cp": "00000" + }, + "metadata": { + "address": "Västra Storgatan 69, Kristianstad", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Svea Vaccin Malmö City", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-Vaccin-Malmo-City/", + "location": { + "longitude": 12.995192498856834, + "latitude": 55.60777261650212, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Fiskehamnsgatan 3, Malmö", + "business_hours": null, + "phone_number": "073-922 42 48" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Sveakliniken, Svedala", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Sveakliniken-Svedala/", + "location": { + "longitude": 13.230728219381895, + "latitude": 55.51831588878077, + "city": "Svedala", + "cp": "00000" + }, + "metadata": { + "address": "Toftavägen 25, Svedala", + "business_hours": null, + "phone_number": "040-618 80 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "VaccinDirekt Lund", + "url": "https://www.1177.se/hitta-vard/kontaktkort/VaccinDirekt-Lund/", + "location": { + "longitude": 13.215756398734321, + "latitude": 55.69048894097376, + "city": "Lund", + "cp": "00000" + }, + "metadata": { + "address": "Kalkstensvägen 13A, Lund", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Bjuv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Bjuv/", + "location": { + "longitude": 12.921009226536968, + "latitude": 56.08309248738263, + "city": "Bjuv", + "cp": "00000" + }, + "metadata": { + "address": "Södra Storgatan 17, Bjuv", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Elite Hotel Ideon", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Elite-Hotel-Ideon/", + "location": { + "longitude": 13.213866584663698, + "latitude": 55.717826602388264, + "city": "Lund", + "cp": "00000" + }, + "metadata": { + "address": "Scheelevägen 27, Lund", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Helsingborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Helsingborg/", + "location": { + "longitude": 12.690055705472904, + "latitude": 56.04599575072398, + "city": "Helsingborg", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 1, Helsingborg", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Kristianstad", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Kristianstad/", + "location": { + "longitude": 14.158735268392324, + "latitude": 56.02944082025915, + "city": "Kristianstad", + "cp": "00000" + }, + "metadata": { + "address": "Östra Boulevarden 56, Kristianstad", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Malmö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Malmo/", + "location": { + "longitude": 12.975981539827515, + "latitude": 55.5622124275113, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Hyllie stationstorg 29, Malmö", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Trelleborg", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 13.159206589534788, + "latitude": 55.37368669238379, + "city": "Trelleborg", + "cp": "00000" + }, + "metadata": { + "address": "Algatan 4, Trelleborg", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30010, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccina Ystad", + "url": "https://www.vaccina.se/covidvaccin/skane/tidsbokning/#/service", + "location": { + "longitude": 13.823960969621373, + "latitude": 55.431996929534286, + "city": "Ystad", + "cp": "00000" + }, + "metadata": { + "address": "Blekegatan 8, Ystad", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30015, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccination Covid19 Öresundshälsan, Malmö", + "url": "https://bokning.mittvaccin.se/klinik/2072", + "location": { + "longitude": 13.065192840175026, + "latitude": 55.5784745846457, + "city": "Malmö", + "cp": "00000" + }, + "metadata": { + "address": "Derbyvägen 6E, Malmö", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2072", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Bromölla", + "url": "https://bokning.mittvaccin.se/klinik/2025", + "location": { + "longitude": 14.467382912237964, + "latitude": 56.074198397712195, + "city": "Bromölla", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 42, Bromölla", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2025", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Eslöv", + "url": "https://bokning.mittvaccin.se/klinik/2022", + "location": { + "longitude": 13.303797540331134, + "latitude": 55.84018749196131, + "city": "Eslöv", + "cp": "00000" + }, + "metadata": { + "address": "Norregatan 6, Eslöv", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2022", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Hyllinge", + "url": "https://bokning.mittvaccin.se/klinik/2018", + "location": { + "longitude": 12.95318447248824, + "latitude": 56.12365487415261, + "city": "Åstorp", + "cp": "00000" + }, + "metadata": { + "address": "Vramsvägen 9, Åstorp", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2018", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Höganäs", + "url": "https://bokning.mittvaccin.se/klinik/2019", + "location": { + "longitude": 12.567829076073167, + "latitude": 56.19992166277999, + "city": "Höganäs", + "cp": "00000" + }, + "metadata": { + "address": "Östra Parkgatan 2, Höganäs", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2019", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Kävlinge", + "url": "https://bokning.mittvaccin.se/klinik/2023", + "location": { + "longitude": 12.990281056526408, + "latitude": 55.76931284279357, + "city": "Kävlinge", + "cp": "00000" + }, + "metadata": { + "address": "Marknadsvägen 7, Löddeköpinge", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2023", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Simrishamn", + "url": "https://bokning.mittvaccin.se/klinik/2020", + "location": { + "longitude": 14.341650661166378, + "latitude": 55.55262089843178, + "city": "Simrishamn", + "cp": "00000" + }, + "metadata": { + "address": "Sjukhusvägen 1, Simrishamn", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2020", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Tomelilla", + "url": "https://bokning.mittvaccin.se/klinik/2021", + "location": { + "longitude": 13.958137668340374, + "latitude": 55.544381938827925, + "city": "Tomelilla", + "cp": "00000" + }, + "metadata": { + "address": "Östergatan 21, Tomelilla", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2021", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "12", + "nom": "Vaccinova Åhus", + "url": "https://bokning.mittvaccin.se/klinik/2024", + "location": { + "longitude": 14.293642027570382, + "latitude": 55.922462664842925, + "city": "Kristianstad", + "cp": "00000" + }, + "metadata": { + "address": "Companiegatan 2A, Åhus", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2024", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "01": { + "version": 1, + "last_updated": "2021-06-10 09:07:19.122222+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [ + { + "departement": "01", + "nom": "Farsta Centrumkyrkan - vaccination covid - SveaVaccin", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.092323236368184, + "latitude": 59.2438662246088, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Farstaplan 15, FARSTA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Hallstavik Sporthall - vaccination covid - Prosalus", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.597218722489295, + "latitude": 60.05412258739656, + "city": "Norrtälje", + "cp": "00000" + }, + "metadata": { + "address": "Badhusvägen 3, HALLSTAVIK", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Haninge Torvalla sportcentrum - vaccination covid VKS Healthcare", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.154963449727802, + "latitude": 59.16571718596268, + "city": "Haninge", + "cp": "00000" + }, + "metadata": { + "address": "Dalarövägen 68, Torvalla träningshall (TT-hallen), HANINGE", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Huddinge Karolinska - vaccination covid", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.936191360658608, + "latitude": 59.22248675849561, + "city": "Huddinge", + "cp": "00000" + }, + "metadata": { + "address": "Hälsovägen, Huddinge, Karolinska Universitetssjukhuset i Huddinge, M41-43, HUDDINGE", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Hötorget - vaccination covid - Aleris", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.061005581347555, + "latitude": 59.335496207791884, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Apelbergsgatan 48, STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Järfälla Viksjö kyrka - vaccination covid - Capio", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.802101402027336, + "latitude": 59.412511936834534, + "city": "Järfälla", + "cp": "00000" + }, + "metadata": { + "address": "Agrargränd 2, JÄRFÄLLA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Kistamässan - vaccination covid - Werlabs", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.95696098714115, + "latitude": 59.406729466919906, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Arne Beurlings Torg 5, Kistamässan huvudentrén, KISTA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Märsta Vikingahallen – vaccination covid - Ally Medical AB", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.839071948105495, + "latitude": 59.617650913234755, + "city": "Sigtuna", + "cp": "00000" + }, + "metadata": { + "address": "Vikingavägen 2, MÄRSTA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Nackastrandsmässan - vaccination covid - KRY", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.16331267994598, + "latitude": 59.31560863719703, + "city": "Nacka", + "cp": "00000" + }, + "metadata": { + "address": "Cylindervägen 3, NACKA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Norrtälje Tullportsgatan 24 - vaccination covid - Prosalus", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.698016055157485, + "latitude": 59.757139303521896, + "city": "Norrtälje", + "cp": "00000" + }, + "metadata": { + "address": "Tullportsgatan 24, Norrtälje", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Rimbo Sparbankshallen – vaccination covid - Prosalus", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.354037664492314, + "latitude": 59.74829393692358, + "city": "Norrtälje", + "cp": "00000" + }, + "metadata": { + "address": "Rånäsvägen 24, RIMBO", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Rinkeby Bredbyskolan - vaccination covid - KRY", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.92216475438761, + "latitude": 59.388477479719576, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Bredbyplan 36, Gymnastiksalen, SPÅNGA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Skärholmen centrum - vaccination covid - Doktor.se", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.909589002972297, + "latitude": 59.27636599419278, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Skärholmsplan 1, SKÄRHOLMEN", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Slakthusområdet Fållan 10 - vaccination covid - Doktor24", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.074670665946385, + "latitude": 59.29185900668172, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Fållan 10, JOHANNESHOV", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Solna Gamla Karolinska - vaccination covid, Karolinska Universitetssjukhuset", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.032450272615133, + "latitude": 59.35224055836545, + "city": "Solna", + "cp": "00000" + }, + "metadata": { + "address": "Karolinska Vägen 22, A2:00 (Gamla Karolinskas huvudentré), STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Södermalm Zinkensdamms IP - vaccination covid - PR Vård", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.050554831968654, + "latitude": 59.31642381408324, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Ringvägen 16, Zinkensdamms IP, STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Södertälje Nygatan 18 - vaccination covid", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.62507631503658, + "latitude": 59.19615208307685, + "city": "Södertälje", + "cp": "00000" + }, + "metadata": { + "address": "Nygatan 18, SÖDERTÄLJE", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Södertälje Sydgatan 5 - vaccination covid - Scania", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.64586022720899, + "latitude": 59.159521788339546, + "city": "Södertälje", + "cp": "00000" + }, + "metadata": { + "address": "Sydgatan 5, SÖDERTÄLJE", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Tumba - vaccination covid - Storvretens vårdcentral", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.839534434913272, + "latitude": 59.19339624721791, + "city": "Botkyrka", + "cp": "00000" + }, + "metadata": { + "address": "Stenvägen 6, TUMBA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Tyresö Kulturcentrum Kvarnhjulet - vaccination covid - BePrep", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.23018782055707, + "latitude": 59.24154079465879, + "city": "Tyresö", + "cp": "00000" + }, + "metadata": { + "address": "Pluggvägen 6B, Hus B, TYRESÖ", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Täby kommunhus - vaccination covid - VaccinDirekt", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.067335691719126, + "latitude": 59.443880789641284, + "city": "Täby", + "cp": "00000" + }, + "metadata": { + "address": "Esplanaden 3, Täby kommunhus, TÄBY", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Upplands Väsby Bredden - vaccination covid - Doktor.se", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 17.927935363589665, + "latitude": 59.4993237354556, + "city": "Upplands Väsby", + "cp": "00000" + }, + "metadata": { + "address": "Kanalvägen 10, Scandic Hotell Bredden, UPPLANDS VÄSBY", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Vallentuna - vaccination covid - Prosalus", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.08987055179181, + "latitude": 59.54241880976877, + "city": "Vallentuna", + "cp": "00000" + }, + "metadata": { + "address": "Blekingevägen 1, VALLENTUNA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Vasastan Filadelfiakyrkan - vaccination covid - Capio", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.03476769970014, + "latitude": 59.339575387519936, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Rörstrandsgatan 5, STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Vasastan Odengatan 65 - vaccination covid - VaccinDirekt", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.052008394014457, + "latitude": 59.34297912324153, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Odengatan 65, 2 trappor, STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Vasastan Sabbatsbergs sjukhus - vaccination covid", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.04623811880833, + "latitude": 59.338381977730734, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Olivecronas väg 7, Sabbatsbergs sjukhus, STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Åkersberga Kyrkliga Centrum - vaccination covid - Prosalus", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.301150743283376, + "latitude": 59.48187562889915, + "city": "Österåker", + "cp": "00000" + }, + "metadata": { + "address": "Bergavägen 13, ÅKERSBERGA", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "01", + "nom": "Östermalm - vaccination covid - Sophiahemmet", + "url": "https://www.1177.se/Stockholm/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-tid-for-vaccination-mot-covid-19-i-stockholms-lan/", + "location": { + "longitude": 18.077152686476886, + "latitude": 59.34646764561026, + "city": "Stockholm", + "cp": "00000" + }, + "metadata": { + "address": "Valhallavägen 91, Hus R, STOCKHOLM", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "04": { + "version": 1, + "last_updated": "2021-06-10 09:08:35.412748+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "04", + "nom": "Vaccina Gnesta, Gnesta", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.326507675212333, + "latitude": 59.03994773439347, + "city": "Gnesta", + "cp": "64630" + }, + "metadata": { + "address": "Dansutvägen 2, 646 30 Gnesta", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-10 11:40:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": 30004, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccina Trosa, Trosa", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.54861749910625, + "latitude": 58.8965322283658, + "city": "Trosa", + "cp": "61930" + }, + "metadata": { + "address": "Busstorget 5, 619 30 Trosa", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": "2021-06-13 15:25:00", + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 3, + "internal_id": 30006, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccinkliniken Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.989176783886634, + "latitude": 58.75034091018592, + "city": "Nyköping", + "cp": "61138" + }, + "metadata": { + "address": "Norrköpingsvägen 13, 611 38 Nyköping", + "business_hours": null, + "phone_number": "0155-60 60 40" + }, + "prochain_rdv": "2021-06-19 12:24:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 426, + "internal_id": "45", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "iDoc Katrineholm, Katrineholm", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.22944269545824, + "latitude": 59.00063679643513, + "city": "Katrineholm", + "cp": "64149" + }, + "metadata": { + "address": "Videvägen 7B, 641 49 Katrineholm", + "business_hours": null, + "phone_number": "011-473 53 70" + }, + "prochain_rdv": "2021-06-10 10:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 2766, + "internal_id": "2069", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "04", + "nom": "Distriktssköterskemottagningen och barnavårdscentralen Valla, Katrineholm", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.380007560039292, + "latitude": 59.01997790393926, + "city": "Katrineholm", + "cp": "00000" + }, + "metadata": { + "address": "Lagerlundavägen 2C", + "business_hours": null, + "phone_number": "0150-48 85 32" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Doktor24 Oxelösund, Oxelösund", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.10294903592922, + "latitude": 58.66989522441743, + "city": "Oxelösund", + "cp": "64330" + }, + "metadata": { + "address": "Torggatan 9, 643 30 Oxelösund", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Doktor24 Vingåker, Vingåker", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 15.87206466885389, + "latitude": 59.045854918164146, + "city": "Vingåker", + "cp": "64330" + }, + "metadata": { + "address": "Storgatan 27, 643 30 Vingåker", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccina Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.589337823953205, + "latitude": 59.05905571299985, + "city": "Flen", + "cp": "64237" + }, + "metadata": { + "address": "Götgatan 6, 642 37 Flen", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30005, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccina Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01994084720094, + "latitude": 59.3791697143613, + "city": "Strängnäs", + "cp": "64533" + }, + "metadata": { + "address": "Seminarievägen 10A, 645 33 Strängnäs", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30003, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccinationsmottagningen Campushallen Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.005272966044274, + "latitude": 59.38581396302979, + "city": "Strängnäs", + "cp": "64535" + }, + "metadata": { + "address": "Bataljonsgatan, Kaserntorget 5, 645 35 Strängnäs", + "business_hours": null, + "phone_number": "0155-24 50 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccinationsmottagningen Parken Zoo Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.483773813480298, + "latitude": 59.372992336766906, + "city": "Eskilstuna", + "cp": "63222" + }, + "metadata": { + "address": "Flackstavägen 13 B, 632 22 Eskilstuna", + "business_hours": null, + "phone_number": "0155-24 50 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccinationsmottagningen Träffen Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.022144278902406, + "latitude": 58.761885569796114, + "city": "Nyköping", + "cp": "61137" + }, + "metadata": { + "address": "Olof Palmes väg 1B, 611 37 Nyköping", + "business_hours": null, + "phone_number": "0155-24 50 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vaccinationsmottagningen Västgötagatan 16 Katrineholm, Katrineholm", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.192256519192338, + "latitude": 58.987834866198654, + "city": "Katrineholm", + "cp": "64136" + }, + "metadata": { + "address": "Västgötagatan 16, 641 36 Katrineholm", + "business_hours": null, + "phone_number": "0155-24 50 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Achima Care Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.454096600064467, + "latitude": 59.37651833243859, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Ekebyvägen 1", + "business_hours": null, + "phone_number": "016-10 49 10" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Achima Care Fristaden Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.517717002563927, + "latitude": 59.37021735627989, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Rademachergatan 1", + "business_hours": null, + "phone_number": "016-585 80 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Bagaregatan Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.005962192011815, + "latitude": 58.74865054185708, + "city": "Nyköping", + "cp": "00000" + }, + "metadata": { + "address": "Bagaregatan 3 D", + "business_hours": null, + "phone_number": "0155-24 56 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Centrum Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.590581067778874, + "latitude": 59.05930854245222, + "city": "Flen", + "cp": "00000" + }, + "metadata": { + "address": "N Kungsgatan 9, 1 tr", + "business_hours": null, + "phone_number": "0157-246 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen City Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.507229881846737, + "latitude": 59.37171041459446, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 39", + "business_hours": null, + "phone_number": "016-10 40 01" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Doktor.se Vingåker, Vingåker", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 15.870877794154792, + "latitude": 59.044688512324086, + "city": "Vingåker", + "cp": "00000" + }, + "metadata": { + "address": "Östra Torggatan 3", + "business_hours": null, + "phone_number": "0151-52 54 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Ekensberg Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.034147044862276, + "latitude": 58.76068547639825, + "city": "Nyköping", + "cp": "00000" + }, + "metadata": { + "address": "Hälsovägen 1", + "business_hours": null, + "phone_number": "0155-24 55 40" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Flen, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.58592206368639, + "latitude": 59.0675329149346, + "city": "Flen", + "cp": "00000" + }, + "metadata": { + "address": "Orrögatan 10", + "business_hours": null, + "phone_number": "0157-185 55" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Fröslunda Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.495983561802703, + "latitude": 59.3523086268136, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Lindängsvägen 2", + "business_hours": null, + "phone_number": "016-10 42 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Gallerian Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.516057122703216, + "latitude": 59.36990323220157, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 6, Eskilstuna", + "business_hours": null, + "phone_number": "016-585 89 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Gnesta, Gnesta", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.30174782915912, + "latitude": 59.04547913906771, + "city": "Gnesta", + "cp": "00000" + }, + "metadata": { + "address": "Nygatan 29", + "business_hours": null, + "phone_number": "0158-524 10" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Malmköping, Flen", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.73442748622717, + "latitude": 59.134873406955556, + "city": "Flen", + "cp": "00000" + }, + "metadata": { + "address": "Siegrothsvägen 14, Malmköping", + "business_hours": null, + "phone_number": "0157-184 44" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Mariefred, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.21632094933982, + "latitude": 59.26480120455866, + "city": "Strängnäs", + "cp": "00000" + }, + "metadata": { + "address": "Solvändan 3, Mariefred", + "business_hours": null, + "phone_number": "0159-290 13" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Min Doktor Vårdcentral Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.040624951102977, + "latitude": 58.75476978166271, + "city": "Nyköping", + "cp": "00000" + }, + "metadata": { + "address": "Ängstugevägen 2", + "business_hours": null, + "phone_number": "0155-46 08 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Mäster Olof Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.034086537987587, + "latitude": 59.37673014844489, + "city": "Strängnäs", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 13", + "business_hours": null, + "phone_number": "0152-262 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Nävertorp Katrineholm, Katrineholm", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.191921754165897, + "latitude": 58.98744984740194, + "city": "Katrineholm", + "cp": "00000" + }, + "metadata": { + "address": "Västgötagatan 16, plan 2", + "business_hours": null, + "phone_number": "0150-48 86 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Oxelösund, Oxelösund", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.101696751901688, + "latitude": 58.67098525294837, + "city": "Oxelösund", + "cp": "00000" + }, + "metadata": { + "address": "Biblioteksgatan 2", + "business_hours": null, + "phone_number": "0155-24 70 01" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Skiftinge Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.537893275314623, + "latitude": 59.38992659901644, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Skiftinge centrum", + "business_hours": null, + "phone_number": "016-10 43 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Smeden Eskilstuna, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.499749390417538, + "latitude": 59.37835731437345, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Björksgatan 8", + "business_hours": null, + "phone_number": "016-10 47 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Stadsfjärden Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.012711882551677, + "latitude": 58.74502318595754, + "city": "Nyköping", + "cp": "00000" + }, + "metadata": { + "address": "Gästabudsvägen 6", + "business_hours": null, + "phone_number": "0155-24 79 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.0265286001446, + "latitude": 59.367132330971025, + "city": "Strängnäs", + "cp": "00000" + }, + "metadata": { + "address": "Finningevägen 40", + "business_hours": null, + "phone_number": "0152-260 90" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Torshälla, Eskilstuna", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.485550249249574, + "latitude": 59.419608367587045, + "city": "Eskilstuna", + "cp": "00000" + }, + "metadata": { + "address": "Germundsgatan 39, Torshälla", + "business_hours": null, + "phone_number": "016-10 41 20" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Trosa, Trosa", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.55920239154485, + "latitude": 58.90203697601764, + "city": "Trosa", + "cp": "00000" + }, + "metadata": { + "address": "Tomtaklintgatan 2", + "business_hours": null, + "phone_number": "0156-535 01" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Unicare Strängnäs, Strängnäs", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 17.01997666561453, + "latitude": 59.37918733604594, + "city": "Strängnäs", + "cp": "00000" + }, + "metadata": { + "address": "Seminarievägen 10", + "business_hours": null, + "phone_number": "0152-262 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Vår Vårdcentral Katrineholm, Katrineholm", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.20422179405783, + "latitude": 58.99529454888172, + "city": "Katrineholm", + "cp": "00000" + }, + "metadata": { + "address": "Drottninggatan 4", + "business_hours": null, + "phone_number": "0150-725 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "04", + "nom": "Vårdcentralen Åsidan Nyköping, Nyköping", + "url": "https://www.1177.se/Sormland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/sa-vaccinerar-du-dig-i-sormland/", + "location": { + "longitude": 16.99933118978741, + "latitude": 58.76032094119558, + "city": "Nyköping", + "cp": "00000" + }, + "metadata": { + "address": "Nyköpings lasarett, entré 8, Visornas väg 6", + "business_hours": null, + "phone_number": "0155-24 52 11" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "03": { + "version": 1, + "last_updated": "2021-06-10 09:09:05.276422+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "17": { + "version": 1, + "last_updated": "2021-06-10 09:09:36.544807+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "24": { + "version": 1, + "last_updated": "2021-06-10 09:10:04.890070+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [ + { + "departement": "24", + "nom": "Anderstorps hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.988785517005645, + "latitude": 64.74597319664163, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Anderstorpsleden 1", + "business_hours": null, + "phone_number": "090-785 91 14" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Backens hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.163080811099466, + "latitude": 63.83722988837268, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Manusgränd 3", + "business_hours": null, + "phone_number": "090-785 44 43" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Bjurholms hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 19.20680770966098, + "latitude": 63.92928599751182, + "city": "Bjurholm", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 16", + "business_hours": null, + "phone_number": "090-785 44 41" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Bolidens hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.383782657759944, + "latitude": 64.86139958738863, + "city": "Skellefteå", + "cp": "93631" + }, + "metadata": { + "address": "Ringen 76, 93631 Boliden", + "business_hours": null, + "phone_number": "090-785 91 23" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Bureå hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 21.19865212175603, + "latitude": 64.62215649223296, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Nygatan 9", + "business_hours": null, + "phone_number": "090-785 91 13" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Burträsk hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.65436866394136, + "latitude": 64.5175640324598, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Björnåkersgatan 10", + "business_hours": null, + "phone_number": "090-785 91 73" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Byske hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 21.20716665139364, + "latitude": 64.950590882984, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Ringvägen 8", + "business_hours": null, + "phone_number": "090-785 91 18" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Capio hälsocentral Dragonen", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.25250669887509, + "latitude": 63.83275864868876, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Ridvägen 12", + "business_hours": null, + "phone_number": "090-785 91 48" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Central vaccinationsmottagning Skellefteå", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.967125563848267, + "latitude": 64.76118182308069, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Skellefteå Kraft Arena, Mossgatan 27", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Central vaccinationsmottagning Umeå", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.24274041731457, + "latitude": 63.832906497142446, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Nolia, Signalvägen 3, Umeå", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Citymottagningen hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.26427806385064, + "latitude": 63.827668127510485, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Nygatan 19B", + "business_hours": null, + "phone_number": "090-785 93 21" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Dorotea sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 16.418131571995104, + "latitude": 64.25937500733974, + "city": "Dorotea", + "cp": "00000" + }, + "metadata": { + "address": "Nygatan 19", + "business_hours": null, + "phone_number": "090-785 91 75" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Erikslids hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.954013870665275, + "latitude": 64.7609101382686, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Annastigen 8", + "business_hours": null, + "phone_number": "090-785 91 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Ersboda hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.317044179291425, + "latitude": 63.85660370244311, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Hälsogränd 3, Umeå", + "business_hours": null, + "phone_number": "090-785 44 57" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Heimdalls hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.948482561952545, + "latitude": 64.75145347569664, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Köpmangatan 15, Skellefteå", + "business_hours": null, + "phone_number": "090-785 91 11" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Holmsunds hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.36503865828701, + "latitude": 63.70732398241559, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Himmelska Fridens Torg 7", + "business_hours": null, + "phone_number": "090-785 91 03" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Husläkarna Hälsocentral i Umeå", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.24726121243241, + "latitude": 63.82724933424847, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 28 B", + "business_hours": null, + "phone_number": "090-785 93 88" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Hörnefors hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 19.90918239708997, + "latitude": 63.624337480884165, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Bruksgatan 4", + "business_hours": null, + "phone_number": "090-785 91 05" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Kåge hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.983612223908484, + "latitude": 64.83156836940908, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Nygatan 13", + "business_hours": null, + "phone_number": "090-785 93 57" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Lövångers hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 21.311303133544506, + "latitude": 64.36908137825338, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Skogstorpsvägen 12", + "business_hours": null, + "phone_number": "090-785 91 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Malå sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 18.756251410101154, + "latitude": 65.17531659490669, + "city": "Malå", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 2", + "business_hours": null, + "phone_number": "090-785 91 19" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Mariehems hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.32802298329659, + "latitude": 63.838617372997795, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Morkullevägen 9", + "business_hours": null, + "phone_number": "090-785 44 44" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Medicinkonsulten AB", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 18.674387839138266, + "latitude": 64.59246225123054, + "city": "Lycksele", + "cp": "00000" + }, + "metadata": { + "address": "Skolgatan 8", + "business_hours": null, + "phone_number": "090-785 93 80" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Morö Backe hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 21.026742481432354, + "latitude": 64.75336170983184, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Höjdgatan 14, Skellefteå", + "business_hours": null, + "phone_number": "090-785 91 15" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Nordmalings hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 19.50699285552043, + "latitude": 63.56314110015042, + "city": "Nordmaling", + "cp": "00000" + }, + "metadata": { + "address": "Hemvägen 12", + "business_hours": null, + "phone_number": "090-785 91 04" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Norrlandskliniken hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.321609843551045, + "latitude": 63.804754920960285, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Glimmervägen 5 E", + "business_hours": null, + "phone_number": "090-785 93 22" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Norsjö hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 19.492159861085895, + "latitude": 64.90894017118802, + "city": "Norsjö", + "cp": "00000" + }, + "metadata": { + "address": "Storgatan 33", + "business_hours": null, + "phone_number": "090-785 91 16" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Robertfors - Pingstkyrkan", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.852139, + "latitude": 64.1936739, + "city": "Robertfors", + "cp": "91531" + }, + "metadata": { + "address": "Yttre Ringvägen 28, 915 31 Robertsfors", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30615, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Robertsfors hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.844570681764722, + "latitude": 64.1927516846582, + "city": "Robertsfors", + "cp": "00000" + }, + "metadata": { + "address": "Fabriksvägen 3", + "business_hours": null, + "phone_number": "090-785 91 21" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Skellefteå -", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.9456521, + "latitude": 64.7500814, + "city": "Skellefteå", + "cp": "93131" + }, + "metadata": { + "address": "Nygatan 50, 931 31 Skellefteå", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30617, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Sorsele sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 17.540891071616244, + "latitude": 65.53741523279075, + "city": "Sorsele", + "cp": "00000" + }, + "metadata": { + "address": "Burevägen 13", + "business_hours": null, + "phone_number": "090-785 91 71" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Stenbergska hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 18.673473259388757, + "latitude": 64.59984994028584, + "city": "Lycksele", + "cp": "00000" + }, + "metadata": { + "address": "Johan Skyttes väg 6", + "business_hours": null, + "phone_number": "090-785 44 48" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Storuman - Folkets Hus", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 17.1150976, + "latitude": 65.1025074, + "city": "Storuman", + "cp": "92331" + }, + "metadata": { + "address": "Blå vägen 256, 923 31 Storuman", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30616, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Storumans sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 17.121804197752063, + "latitude": 65.09670707643072, + "city": "Storuman", + "cp": "00000" + }, + "metadata": { + "address": "Backvägen 2", + "business_hours": null, + "phone_number": "090-785 44 73" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Sävar hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.551555586055475, + "latitude": 63.89843626107976, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Kungsvägen 8A", + "business_hours": null, + "phone_number": "090-785 44 47" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Tegs hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.253714356041783, + "latitude": 63.820570789783865, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Tegsplan 2C", + "business_hours": null, + "phone_number": "090-785 44 56" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Tärnaby sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 15.31339230368373, + "latitude": 65.71588725571208, + "city": "Storuman", + "cp": "00000" + }, + "metadata": { + "address": "Granvägen 7, Tärnaby", + "business_hours": null, + "phone_number": "090-785 44 70" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Umeå, Avion Shopping", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.2451951, + "latitude": 63.8067113, + "city": "Umeå", + "cp": "90422" + }, + "metadata": { + "address": "Marknadsgatan 3, 904 22 Umeå", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30618, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Ursvikens hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 21.188010806191546, + "latitude": 64.69952266126344, + "city": "Skellefteå", + "cp": "00000" + }, + "metadata": { + "address": "Skelleftehamnsvägen 206 A, Ursviken", + "business_hours": null, + "phone_number": "090-785 91 12" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Vilhelmina sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 16.66232849898825, + "latitude": 64.62508647124498, + "city": "Vilhelmina", + "cp": "00000" + }, + "metadata": { + "address": "Volgsjövägen 37", + "business_hours": null, + "phone_number": "090-785 91 25" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Vindelns hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 19.713726275515782, + "latitude": 64.20117474404158, + "city": "Vindeln", + "cp": "00000" + }, + "metadata": { + "address": "Storvägen 56", + "business_hours": null, + "phone_number": "090-785 44 42" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Vännäs hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 19.773237307657297, + "latitude": 63.90955870161272, + "city": "Vännäs", + "cp": "00000" + }, + "metadata": { + "address": "Umevägen 56", + "business_hours": null, + "phone_number": "090-785 44 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Ålidhems hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 20.316742449489357, + "latitude": 63.81499142292883, + "city": "Umeå", + "cp": "00000" + }, + "metadata": { + "address": "Tvistevägen 2", + "business_hours": null, + "phone_number": "090-785 44 58" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "24", + "nom": "Åsele sjukstuga hälsocentral", + "url": "https://www.1177.se/Vasterbotten/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/boka-vaccination-mot-covid-19-vasterbotten/#:~:text=Du%20bokar%20tid%20genom%20att,v%C3%A5rdpersonal%20vid%20det%20f%C3%B6rsta%20vaccinationstillf%C3%A4llet.", + "location": { + "longitude": 17.359149785111434, + "latitude": 64.16094798300327, + "city": "Åsele", + "cp": "00000" + }, + "metadata": { + "address": "Bryggaregatan 11 A", + "business_hours": null, + "phone_number": "090-785 91 76" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "22": { + "version": 1, + "last_updated": "2021-06-10 09:14:52.458752+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Bollsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.6703668135133, + "latitude": 62.99855335986241, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Bollsta Folketspark, Tunsjövägen 4", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-29 09:45:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 804, + "internal_id": "1321", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Sollefteå, Hullsta gård", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.273690876743526, + "latitude": 63.16638706103348, + "city": "Sollefteå", + "cp": "00000" + }, + "metadata": { + "address": "Hullsta gård, Storgatan 69", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": "2021-06-10 09:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 402, + "internal_id": "1325", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "22", + "nom": "Vaccinationsenhet Curlinghallen Skyttis", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 18.73309939643111, + "latitude": 63.29646278008092, + "city": "Örnsköldsvik", + "cp": "00000" + }, + "metadata": { + "address": "Valhallavägen 20, Örnsköldsvik", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1514", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Fränsta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.166493074132607, + "latitude": 62.500909094703054, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Mårtensvägen 2, Fränsta", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "926", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Församlingshemmet Björna", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 18.599430359109586, + "latitude": 63.55227676376663, + "city": "Örnsköldsvik", + "cp": "00000" + }, + "metadata": { + "address": "Järnvägsgatan 6, Björna", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1332", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Husumgården", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 19.16616919246284, + "latitude": 63.335090194766195, + "city": "Örnsköldsvik", + "cp": "00000" + }, + "metadata": { + "address": "Blåsåsen 2, Husum", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1327", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Härnösand", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.9298362078272, + "latitude": 62.62440429993568, + "city": "Härnösand", + "cp": "00000" + }, + "metadata": { + "address": "Södra vägen 3-5", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1309", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Junsele", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.88054364443083, + "latitude": 63.694607625020325, + "city": "Sollefteå", + "cp": "00000" + }, + "metadata": { + "address": "Forumvägen 4, Junsele", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "910", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Kramfors", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.771429954085686, + "latitude": 62.929766178980955, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Folkets park, Parkgatan 14", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1323", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Liden", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.803012828751818, + "latitude": 62.7004084040178, + "city": "Sundsvall", + "cp": "85599" + }, + "metadata": { + "address": "Husåsvägen 18, 855 99 Liden", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "916", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Matfors", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.014423130377182, + "latitude": 62.348525018856556, + "city": "Sundsvall", + "cp": "00000" + }, + "metadata": { + "address": "Skölevägen 19", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "914", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Nacksta", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.255449827674113, + "latitude": 62.392978556952556, + "city": "Sundsvall", + "cp": "85350" + }, + "metadata": { + "address": "Axvägen 15, 853 50 Sundsvall", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1291", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Njurunda", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.378664080378908, + "latitude": 62.29689029683933, + "city": "Sundsvall", + "cp": "00000" + }, + "metadata": { + "address": "Affärsgatan 1, Kvissleby", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "921", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Olympia", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 18.10457330045989, + "latitude": 63.445485441677675, + "city": "Örnsköldsvik", + "cp": "00000" + }, + "metadata": { + "address": "Olympiavägen 1, Bredbyn", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1326", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Ramsele", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.468335906884008, + "latitude": 63.53552948800416, + "city": "Sollefteå", + "cp": "00000" + }, + "metadata": { + "address": "Läkarvägen 16, Ramsele", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "909", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Stöde", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 16.58809561356754, + "latitude": 62.41871740439995, + "city": "Sundsvall", + "cp": "86441" + }, + "metadata": { + "address": "Gyllenvägen 6, 864 41 Stöde", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "915", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Ullånger", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 18.190353040283107, + "latitude": 63.0120855523821, + "city": "Kramfors", + "cp": "00000" + }, + "metadata": { + "address": "Centrumhuset Ullånger", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1322", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Älvens Hus, Sörberge", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 17.39141654699482, + "latitude": 62.51993793321354, + "city": "Timrå", + "cp": "86030" + }, + "metadata": { + "address": "Älvens hus, Lövuddsvägen 44, 860 30 Sörberge", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1311", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "22", + "nom": "Vaccinationsenhet Ånge", + "url": "https://www.1177.se/Vasternorrland/sjukdomar--besvar/lungor-och-luftvagar/inflammation-och-infektion-ilungor-och-luftror/om-covid-19--coronavirus/om-vaccin-mot-covid-19/vaccinationsenheter-i-vasternorrland/#:~:text=Du%20som%20har%20fyllt%2018,f%C3%B6r%20vaccination%20mot%20covid%2D19.", + "location": { + "longitude": 15.661994807027176, + "latitude": 62.52449235305313, + "city": "Ånge", + "cp": "00000" + }, + "metadata": { + "address": "Bankgatan 1", + "business_hours": null, + "phone_number": "0611-804 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "917", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "19": { + "version": 1, + "last_updated": "2021-06-10 09:15:21.409153+02:00", + "last_scrap": [], + "centres_disponibles": [], + "centres_indisponibles": [] + }, + "14": { + "version": 1, + "last_updated": "2021-06-10 09:39:46.869754+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "14", + "nom": "Alingsås Nolhalla", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Falköping", + "url": "https://bokning.mittvaccin.se/klinik/2085", + "location": { + "longitude": 13.554253617544363, + "latitude": 58.1892574341603, + "city": "Göteborg", + "cp": "52137" + }, + "metadata": { + "address": "Danska vägen 62, 521 37, Falköping", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": "2021-06-11 10:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "2085", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Bäckefors Dalslands Sjukhus", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Dingle Lantbruksskolan", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 13, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Partille vårdcentral, Partille", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Partille-vardcentral-Partille/", + "location": { + "longitude": 12.10506529223986, + "latitude": 57.73914640025265, + "city": "Partille", + "cp": "43333" + }, + "metadata": { + "address": "Kyrktorget 13, 433 33, Partille", + "business_hours": null, + "phone_number": "010-473 33 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 2, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tidaholm vårdcentral, Tidaholm", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tidaholm-vardcentral-Tidaholm/", + "location": { + "longitude": 13.956163123936285, + "latitude": 58.17816034620173, + "city": "Tidaholm", + "cp": "52230" + }, + "metadata": { + "address": "Västra Drottningvägen 11, 522 30, Tidaholm", + "business_hours": null, + "phone_number": "0502-180 11" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 74, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "14", + "nom": "Achima Care Uddevalla vårdcentral, Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Achima-Care-Uddevalla-vardcentral-Uddevalla/", + "location": { + "longitude": 11.95071938164795, + "latitude": 58.347983261012416, + "city": "Uddevalla", + "cp": "45134" + }, + "metadata": { + "address": "Västgötavägen 30, 451 34, Uddevalla", + "business_hours": null, + "phone_number": "0522-933 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Alepraktiken, Nödinge", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Alepraktiken-Nodinge/", + "location": { + "longitude": 12.049384034695741, + "latitude": 57.890266875988, + "city": "Ale", + "cp": "44930" + }, + "metadata": { + "address": "Klockarevägen 14, 449 30, Nödinge", + "business_hours": null, + "phone_number": "0303-977 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Allemanshälsan vårdcentral - Lunden, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Allemanshalsan-vardcentral-Lunden-Skovde/", + "location": { + "longitude": 13.853332122206876, + "latitude": 58.406317838151715, + "city": "Skövde", + "cp": "54145" + }, + "metadata": { + "address": "Gustav Adolfs gata 57, 541 45, Skövde", + "business_hours": null, + "phone_number": "0500-78 99 90" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Allemanshälsans vårdcentral - City, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Allemanshalsans-vardcentral-City-Skovde/", + "location": { + "longitude": 13.853709489938993, + "latitude": 58.40599132342213, + "city": "Skövde", + "cp": "54145" + }, + "metadata": { + "address": "Gustav Adolfs gata 57, 541 45, Skövde", + "business_hours": null, + "phone_number": "0500-65 98 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Allékliniken Sleipner Vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Allekliniken-Sleipner-Vardcentral-Boras/", + "location": { + "longitude": 12.942436053741043, + "latitude": 57.7209751478739, + "city": "Borås", + "cp": "50332" + }, + "metadata": { + "address": "Allégatan 39, 503 32, Borås", + "business_hours": null, + "phone_number": "033-724 64 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Apoteket Allum Partille", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Apoteket-Allum-Partille/", + "location": { + "longitude": 12.10623125846271, + "latitude": 57.73727529221055, + "city": "Partille", + "cp": "43335" + }, + "metadata": { + "address": "Nils Henriksson väg 3, 433 35, Partille", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Apoteket Hjorten", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Apoteket-Hjorten/", + "location": { + "longitude": 12.536584869425102, + "latitude": 57.92996743958377, + "city": "Alingsås", + "cp": "44130" + }, + "metadata": { + "address": "Kungsgatan 29, 441 30, Alingsås", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Apoteket Kronan Ulricehamn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Apoteket-Kronan-Ulricehamn/", + "location": { + "longitude": 13.413938625306395, + "latitude": 57.794367426132, + "city": "Ulricehamn", + "cp": "52330" + }, + "metadata": { + "address": "Storgatan 1, 523 30, Ulricehamnn", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Apoteket Måsen Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Apoteket-Masen-Uddevalla/", + "location": { + "longitude": 11.92927389307013, + "latitude": 58.355854473494986, + "city": "Uddevalla", + "cp": "45153" + }, + "metadata": { + "address": "Fjällvägen 9, 451 53, Uddevalla", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Apoteket Svanen Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Apoteket-Svanen-Trollhattan/", + "location": { + "longitude": 12.290560011203246, + "latitude": 58.28490656594135, + "city": "Trollhättan", + "cp": "46127" + }, + "metadata": { + "address": "Kungsgatan 32, 461 27, Trollhättan", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "BVC Capio Läkarhus Hjortmossen, Trollhättan", + "url": "https://patient.nu/portal/public/calendar/86c49026-74bc-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 12.290271953568565, + "latitude": 58.27371158179932, + "city": "Trollhättan", + "cp": "46152" + }, + "metadata": { + "address": "Lasarettsvägen 2, 461 52, Trollhättan", + "business_hours": null, + "phone_number": "0520-47 45 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "86c49026-74bc-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "BVC Capio Läkarhus Kvillebäcken, Hisingen", + "url": "https://patient.nu/portal/public/calendar/b1d9530d-74bd-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.948395501444496, + "latitude": 57.72116398215221, + "city": "Göteborg", + "cp": "41722" + }, + "metadata": { + "address": "Borstbindaregatan 6, 417 22, Göteborg", + "business_hours": null, + "phone_number": "031-744 23 30" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "b1d9530d-74bd-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "BVC Nötkärnan Friskvädertorget Familjeläkare & BVC, Biskopsgården", + "url": "https://www.1177.se/hitta-vard/kontaktkort/BVC-Notkarnan-Friskvadertorget-Familjelakare-och-BVC-Biskopsgarden/", + "location": { + "longitude": 11.89241120925648, + "latitude": 57.72488130497697, + "city": "Göteborg", + "cp": "41838" + }, + "metadata": { + "address": "Friskväderstorget 8, 418 38, Göteborg", + "business_hours": null, + "phone_number": "031-792 87 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "BVC Nötkärnan Kållered Familjeläkare och BVC, Kållered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/BVC-Notkarnan-Kallered-Familjelakare-och-BVC-Kallered/", + "location": { + "longitude": 12.048777763042008, + "latitude": 57.61082212425263, + "city": "Mölndal", + "cp": "42832" + }, + "metadata": { + "address": "Gamla Riksvägen 44, 428 32, Kållered", + "business_hours": null, + "phone_number": "031-793 18 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Backaplan Vårdcentral och BVC", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Backaplan-Vardcentral-och-BVC/", + "location": { + "longitude": 11.946564303636322, + "latitude": 57.72605127421253, + "city": "Göteborg", + "cp": "41705" + }, + "metadata": { + "address": "Gamla Tuvevägen 23, 417 05, Göteborg", + "business_hours": null, + "phone_number": "031-300 01 90" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Bakfickan Doktor 24 covid-vaccination", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Bakfickan-Doktor-24-covid-vaccination/", + "location": { + "longitude": 12.941278858937048, + "latitude": 57.721595776476704, + "city": "Borås", + "cp": "50332" + }, + "metadata": { + "address": "Allégatan 32, 503 32, Borås", + "business_hours": null, + "phone_number": "010-410 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Bohus Vårdcentral och BVC", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Bohus-Vardcentral-och-BVC/", + "location": { + "longitude": 12.016429443282577, + "latitude": 57.85146853587611, + "city": "Ale", + "cp": "44537" + }, + "metadata": { + "address": "Göteborgsvägen 219, 445 37, Bohus", + "business_hours": null, + "phone_number": "031-42 40 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Borås Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Boras-Vardcentral/", + "location": { + "longitude": 12.939630803111443, + "latitude": 57.73436013122904, + "city": "Borås", + "cp": "50630" + }, + "metadata": { + "address": "Herrljungagatan 1, 506 30, Borås", + "business_hours": null, + "phone_number": "033-323 20 40" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Bräcke Diakoni Vårdcentralen Centralhälsan, Falköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Bracke-Diakoni-Vardcentralen-Centralhalsan-Falkoping/", + "location": { + "longitude": 13.554135866320628, + "latitude": 58.167466873038066, + "city": "Falköping", + "cp": "52147" + }, + "metadata": { + "address": "Bryngelsgatan 2B, 521 47, Falköping", + "business_hours": null, + "phone_number": "0515-71 72 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Bräcke Diakoni Vårdcentralen Centrum, Alingsås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Bracke-Diakoni-Vardcentralen-Centrum-Alingsas/", + "location": { + "longitude": 12.530026332606003, + "latitude": 57.930580055442654, + "city": "Alingsås", + "cp": "44130" + }, + "metadata": { + "address": "Kungsgatan 5, 441 30, Alingsås", + "business_hours": null, + "phone_number": "0322-28 01 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Brämhults Vårdcentral, Brämhult, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Bramhults-Vardcentral-Bramhult-Boras/", + "location": { + "longitude": 13.004057006685217, + "latitude": 57.72592102822638, + "city": "Borås", + "cp": "50730" + }, + "metadata": { + "address": "Tvinnargatan 19, 507 30, Brämhult", + "business_hours": null, + "phone_number": "033-20 28 60" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Almö, Myggenäs", + "url": "https://patient.nu/portal/public/calendar/6a66e2d4-74b7-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.752033265330198, + "latitude": 58.06245693839384, + "city": "Tjörn", + "cp": "47160" + }, + "metadata": { + "address": "Myggenäsvägen 4A, 471 60, Myggenäs", + "business_hours": null, + "phone_number": "0304-25 92 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "6a66e2d4-74b7-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Angered, Angered", + "url": "https://patient.nu/portal/public/calendar/2c61fd19-74ba-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 12.049053759260044, + "latitude": 57.797573971257265, + "city": "Göteborg", + "cp": "42465" + }, + "metadata": { + "address": "Kultivatorgatan 3, 424 65, Angered", + "business_hours": null, + "phone_number": "031-722 11 80" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2c61fd19-74ba-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Brastad filial, Lysekil", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Capio-Lakarhus-Brastad-filial-Lysekil/", + "location": { + "longitude": 11.486456545338122, + "latitude": 58.381576707992885, + "city": "Lysekil", + "cp": "45431" + }, + "metadata": { + "address": "Läkarvägen 4, 454 31, Brastad", + "business_hours": null, + "phone_number": "0523-45 92 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Hjortmossen, Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Capio-Lakarhus-Hjortmossen-Trollhattan/", + "location": { + "longitude": 12.290271953568565, + "latitude": 58.27371158179932, + "city": "Trollhättan", + "cp": "46152" + }, + "metadata": { + "address": "Lasarettsvägen 2, 461 52, Trollhättan", + "business_hours": null, + "phone_number": "0520-47 45 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Kvillebäcken, Hisingen", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Capio-Lakarhus-Kvillebacken-Hisingen/", + "location": { + "longitude": 11.948395501444496, + "latitude": 57.72116398215221, + "city": "Göteborg", + "cp": "41722" + }, + "metadata": { + "address": "Borstbindaregatan 6, 417 22, Göteborg", + "business_hours": null, + "phone_number": "031-744 23 30" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Lysekil, Lysekil", + "url": "https://patient.nu/portal/public/calendar/338711cd-74c0-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.438437991966833, + "latitude": 58.27434343068038, + "city": "Lysekil", + "cp": "45333" + }, + "metadata": { + "address": "Södra Hamngatan 4, 453 33, Lysekil", + "business_hours": null, + "phone_number": "0523-45 92 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "338711cd-74c0-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Lödöse, Lödöse", + "url": "https://patient.nu/portal/public/calendar/8f3616c9-74c1-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 12.152355130406331, + "latitude": 58.03385016130814, + "city": "Lilla Edet", + "cp": "46371" + }, + "metadata": { + "address": "Klostergatan 1 F, 463 71, Lödöse", + "business_hours": null, + "phone_number": "0520-40 50 60" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "8f3616c9-74c1-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Selma, Hisings Backa", + "url": "https://patient.nu/portal/public/calendar/f2076616-74c3-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.98214942257889, + "latitude": 57.75033771020452, + "city": "Göteborg", + "cp": "42248" + }, + "metadata": { + "address": "Selma Lagerlöfs torg 1, 422 48, Hisings Backa", + "business_hours": null, + "phone_number": "031-722 11 70" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "f2076616-74c3-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Läkarhus Stenungsund, Stenungsund", + "url": "https://patient.nu/portal/public/calendar/03e019ff-74c5-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.81557654463688, + "latitude": 58.07234007994547, + "city": "Stenungsund", + "cp": "44431" + }, + "metadata": { + "address": "Strandvägen 23D, 444 31, Stenungsund", + "business_hours": null, + "phone_number": "0303-37 38 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "03e019ff-74c5-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Vårdcentral Amhult, Torslanda", + "url": "https://patient.nu/portal/public/calendar/404caed5-74c7-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.781171641045045, + "latitude": 57.70954280998032, + "city": "Göteborg", + "cp": "42337" + }, + "metadata": { + "address": "Flygfältsgatan 23, 423 37, Torslanda", + "business_hours": null, + "phone_number": "031-352 30 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "404caed5-74c7-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Vårdcentral Axess, Haga-Annedal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Capio-Vardcentral-Axess-Haga-Annedal/", + "location": { + "longitude": 11.957839684560387, + "latitude": 57.69962999233419, + "city": "Göteborg", + "cp": "41301" + }, + "metadata": { + "address": "Södra Allégatan 6, 413 01, Göteborg", + "business_hours": null, + "phone_number": "031-725 00 75" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Vårdcentral Gårda, Gårda", + "url": "https://patient.nu/portal/public/calendar/338dab69-ab30-11eb-a8eb-fa163e329242", + "location": { + "longitude": 11.995206719429358, + "latitude": 57.710648081495115, + "city": "Göteborg", + "cp": "41664" + }, + "metadata": { + "address": "Anders Personsgatan 12, 416 64, Göteborg", + "business_hours": null, + "phone_number": "031-352 31 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "338dab69-ab30-11eb-a8eb-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Vårdcentral Hovås, Askim", + "url": "https://patient.nu/portal/public/calendar/dc841111-74ca-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.94982890180409, + "latitude": 57.598338038218024, + "city": "Göteborg", + "cp": "43653" + }, + "metadata": { + "address": "Hedtångsvägen 8, 436 53, Hovås", + "business_hours": null, + "phone_number": "031-352 30 30" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "dc841111-74ca-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Vårdcentral Mölndal, Mölndal", + "url": "https://patient.nu/portal/public/calendar/56708b7f-6c11-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 12.013134856746571, + "latitude": 57.65584330783802, + "city": "Mölndal", + "cp": "43130" + }, + "metadata": { + "address": "Bergmansgatan 17, 431 30, Mölndal", + "business_hours": null, + "phone_number": "031-87 84 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "56708b7f-6c11-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Capio Vårdcentral Orust, Orust", + "url": "https://patient.nu/portal/public/calendar/8aff0f24-74c3-11eb-b72c-c1de16d3e1eb", + "location": { + "longitude": 11.676391068697958, + "latitude": 58.23263031045307, + "city": "Orust", + "cp": "47332" + }, + "metadata": { + "address": "Kaprifolvägen 2 E, 473 32, Henån", + "business_hours": null, + "phone_number": "0304-68 01 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "8aff0f24-74c3-11eb-b72c-c1de16d3e1eb", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Centralhälsan Silentzvägen, Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Centralhalsan-Silentzvagen-Uddevalla/", + "location": { + "longitude": 11.92801127402295, + "latitude": 58.35318293630288, + "city": "Uddevalla", + "cp": "45150" + }, + "metadata": { + "address": "Silentzvägen 6, 451 50, Uddevalla", + "business_hours": null, + "phone_number": "0522-392 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Centrumpraktiken, Kungälv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Centrumpraktiken-Kungalv/", + "location": { + "longitude": 11.975510860756035, + "latitude": 57.875771417478305, + "city": "Kungälv", + "cp": "44249" + }, + "metadata": { + "address": "Triogatan 5, 442 49, Kungälv", + "business_hours": null, + "phone_number": "0303-20 93 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Cityläkarna Borås, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Citylakarna-boras-Boras/", + "location": { + "longitude": 12.928673696383097, + "latitude": 57.72112111772995, + "city": "Borås", + "cp": "50435" + }, + "metadata": { + "address": "Göteborgsvägen 4, 504 35, Borås", + "business_hours": null, + "phone_number": "033-720 24 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Klinik Vaccinationsmottagning Burgården", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Klinik-Vaccinationsmottagning-Burgarden/", + "location": { + "longitude": 11.986569756562414, + "latitude": 57.70067207519942, + "city": "Göteborg", + "cp": "41251" + }, + "metadata": { + "address": "Skånegatan 20, 412 51, Göteborg", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Klinik Vaccinationsmottagning Floby", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Klinik-Vaccinationsmottagning-Floby/", + "location": { + "longitude": 13.336339700492204, + "latitude": 58.136327790108716, + "city": "Falköping", + "cp": "52151" + }, + "metadata": { + "address": "Storgatan 53, 521 51, Floby", + "business_hours": null, + "phone_number": "010-209 09 07" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Klinik Vaccinationsmottagning Fridkullagatan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Klinik-Vaccinationsmottagning-Fridkullagatan/", + "location": { + "longitude": 11.988315131489832, + "latitude": 57.680440201312486, + "city": "Göteborg", + "cp": "41262" + }, + "metadata": { + "address": "Fridkullagatan 23, 412 62, Göteborg", + "business_hours": null, + "phone_number": "031-44 40 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Klinik Vaccinationsmottagning Lysekil", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Klinik-Vaccinationsmottagning-Lysekil/", + "location": { + "longitude": 11.441080412417193, + "latitude": 58.28087047363773, + "city": "Lysekil", + "cp": "45334" + }, + "metadata": { + "address": "Lasarettsgatan 1, 453 34, Lysekil", + "business_hours": null, + "phone_number": "076-644 14 12" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Klinik Vaccinationsmottagning Nordstan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Klinik-Vaccinationsmottagning-Nordstan/", + "location": { + "longitude": 11.968170261362843, + "latitude": 57.70828444783269, + "city": "Göteborg", + "cp": "41106" + }, + "metadata": { + "address": "Postgatan 22, 411 06, Göteborg", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Klinik, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Klinik-Centrum/", + "location": { + "longitude": 11.988987448947197, + "latitude": 57.680110000792965, + "city": "Göteborg", + "cp": "41262" + }, + "metadata": { + "address": "Fridkullagatan 27, 412 62, Göteborg", + "business_hours": null, + "phone_number": "031-44 40 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Din Vårdcentral i Lerum, Lerum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Din-Vardcentral-i-Lerum-Lerum/", + "location": { + "longitude": 12.263959253247519, + "latitude": 57.764892958123866, + "city": "Lerum", + "cp": "44339" + }, + "metadata": { + "address": "Åsenvägen 2, 443 39, Lerum", + "business_hours": null, + "phone_number": "0302-49 99 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Distriktsläkarna Kviberg Vårdcentral och BVC", + "url": "https://patient.nu/portal/public/calendar/a5acef14-9dba-11eb-a8eb-fa163e329242", + "location": { + "longitude": 12.024002113993557, + "latitude": 57.73189571942164, + "city": "Göteborg", + "cp": "41528" + }, + "metadata": { + "address": "Rustmästaregatan 3, 415 28, Göteborg", + "business_hours": null, + "phone_number": "031-363 62 80" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "a5acef14-9dba-11eb-a8eb-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Distriktsläkarna Mölndal Vårdcentral och BVC", + "url": "https://patient.nu/portal/public/calendar/92adacb2-a27c-11eb-a8eb-fa163e329242", + "location": { + "longitude": 12.001175112061699, + "latitude": 57.65957290427461, + "city": "Mölndal", + "cp": "43148" + }, + "metadata": { + "address": "Jungfruplatsen 2, 431 48, Mölndal", + "business_hours": null, + "phone_number": "031-363 61 30" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "92adacb2-a27c-11eb-a8eb-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Doktor se Adina Hälsans vårdcentral Nol, Nol", + "url": "https://patient.nu/portal/public/calendar/77cc98db-b7a0-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.066285398600257, + "latitude": 57.916954178055235, + "city": "Ale", + "cp": "44942" + }, + "metadata": { + "address": "Noltorget 12, 449 42, Nol", + "business_hours": null, + "phone_number": "031-383 04 20" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "77cc98db-b7a0-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Doktor se Adina Hälsans vårdcentral Nol, Nol", + "url": "https://patient.nu/portal/public/calendar/c54602d5-b7a4-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.066285398600257, + "latitude": 57.916954178055235, + "city": "Ale", + "cp": "44942" + }, + "metadata": { + "address": "Noltorget 12, 449 42, Nol", + "business_hours": null, + "phone_number": "031-383 04 20" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "c54602d5-b7a4-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Doktorbjörn Bengtsfors", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Doktorbjorn-Bengtsfors/", + "location": { + "longitude": 12.233868470563621, + "latitude": 59.04064040281185, + "city": "Dals-Ed", + "cp": "66631" + }, + "metadata": { + "address": "Industrigatan 12, 666 31, Bengtsfors, Bengtsfors Företagscenter (gamla Lear)", + "business_hours": null, + "phone_number": "0534-14 19 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Doktorbjörn Ed", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Doktorbjorn-Ed/", + "location": { + "longitude": 11.94282124714873, + "latitude": 58.90846392317048, + "city": "Dals-Ed", + "cp": "66830" + }, + "metadata": { + "address": "Stubbekasvägen 5, 668 30, Ed, Bollhallen", + "business_hours": null, + "phone_number": "0534-14 19 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Doktorbjörn Färgelanda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Doktorbjorn-Fargelanda/", + "location": { + "longitude": 11.990669498198528, + "latitude": 58.56853157856914, + "city": "Dals-Ed", + "cp": "45832" + }, + "metadata": { + "address": "Allhemsvägen 5, 458 32, Färgelanda, Sporthallen Färgelanda", + "business_hours": null, + "phone_number": "0534-14 19 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Doktorbjörn Mellerud", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Doktorbjorn-Mellerud/", + "location": { + "longitude": 12.459861861222377, + "latitude": 58.703791100388806, + "city": "Dals-Ed", + "cp": "46430" + }, + "metadata": { + "address": "Bergsgatan 28, 464 30, Mellerud, Rådahallen", + "business_hours": null, + "phone_number": "0534-14 19 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Drive-In Nötkärnan Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Drive-In-Notkarnan-Goteborg/", + "location": { + "longitude": 11.933909038369034, + "latitude": 57.68149011642591, + "city": "Göteborg", + "cp": "41476" + }, + "metadata": { + "address": "Slottskogsgatan 113, 414 76, Göteborg", + "business_hours": null, + "phone_number": "031-792 25 22" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Familjehälsan Vårdcentral, Gamlestaden", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Familjehalsan-Vardcentral-Gamlestaden/", + "location": { + "longitude": 12.017018191575035, + "latitude": 57.72895457382177, + "city": "Göteborg", + "cp": "41505" + }, + "metadata": { + "address": "Rullagergatan 4, 415 05, Göteborg", + "business_hours": null, + "phone_number": "031-300 00 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Familjeläkarna i Mölnlycke Vårdcentral och BVC, Mölnlycke", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Familjelakarna-i-Molnlycke-Vardcentral-och-BVC-Molnlycke/", + "location": { + "longitude": 12.1171168443448, + "latitude": 57.65617241644851, + "city": "Härryda", + "cp": "43544" + }, + "metadata": { + "address": "Hönekullavägen 13, 435 44, Mölnlycke", + "business_hours": null, + "phone_number": "031-68 14 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Gårdsten Vårdcentral, Angered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Gardsten-Vardcentral-Angered/", + "location": { + "longitude": 12.031439809333635, + "latitude": 57.80408706447757, + "city": "Göteborg", + "cp": "42441" + }, + "metadata": { + "address": "Muskotgatan 10, 424 41, Angered", + "business_hours": null, + "phone_number": "031-396 00 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Hamnstadens Vårdcentral, Lidköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Hamnstadens-Vardcentral-Lidkoping/", + "location": { + "longitude": 13.157913960593445, + "latitude": 58.5078356591677, + "city": "Lidköping", + "cp": "53130" + }, + "metadata": { + "address": "Fabriksgatan 4, 531 30, Lidköping", + "business_hours": null, + "phone_number": "0510-48 88 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Heartbeat AES Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Heartbeat-AES-Uddevalla/", + "location": { + "longitude": 11.809715974566041, + "latitude": 58.35088742890866, + "city": "Uddevalla", + "cp": "00000" + }, + "metadata": { + "address": "Herrestads Torp 353, Uddevalla", + "business_hours": null, + "phone_number": "076-534 03 30" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Heartbeat Vaccinationsmottagning Tanum Shoppingcenter", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Heartbeat-Vaccinationsmottagning-Tanum-Shoppingcenter/", + "location": { + "longitude": 11.346206585497995, + "latitude": 58.72205126741124, + "city": "Tanum", + "cp": "45732" + }, + "metadata": { + "address": "Brehogsvägen 5, 457 32, Tanumshede", + "business_hours": null, + "phone_number": "076-534 03 30" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Herkules Vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Herkules-Vardcentral-Boras/", + "location": { + "longitude": 12.938715782395036, + "latitude": 57.722795434053936, + "city": "Borås", + "cp": "50330" + }, + "metadata": { + "address": "Västerlånggatan 1, 503 30, Borås", + "business_hours": null, + "phone_number": "033-20 57 70" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Hälsa Hemma Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsa-Hemma-Vardcentral/", + "location": { + "longitude": 12.042361775987148, + "latitude": 57.60809659001848, + "city": "Mölndal", + "cp": "42836" + }, + "metadata": { + "address": "Ekenleden 15A, 428 36, Kållered", + "business_hours": null, + "phone_number": "010-750 07 76" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "HälsoBrunnen - vårdcentral, Ulricehamn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/HalsoBrunnen-vardcentral-Ulricehamn/", + "location": { + "longitude": 13.407213222912585, + "latitude": 57.80521641883887, + "city": "Ulricehamn", + "cp": "52337" + }, + "metadata": { + "address": "Vistvägen 2, 523 37, Ulricehamn", + "business_hours": null, + "phone_number": "0321-68 54 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Hälsocentralen i Tibro, Tibro", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsocentralen-i-Tibro-Tibro/", + "location": { + "longitude": 14.166574484469399, + "latitude": 58.423011552337776, + "city": "Tibro", + "cp": "54330" + }, + "metadata": { + "address": "Centrumgatan 31, 543 30, Tibro", + "business_hours": null, + "phone_number": "0503-312 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Hälsocentralen, Hjo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Halsocentralen-Hjo/", + "location": { + "longitude": 14.285868412921948, + "latitude": 58.30792176466699, + "city": "Hjo", + "cp": "54432" + }, + "metadata": { + "address": "Fabriksgatan 1, 544 32, Hjo", + "business_hours": null, + "phone_number": "0503-312 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Hönö Vårdcentral på Björkö filial, Hönö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Hono-Vardcentral-pa-Bjorko-filial-Hono/", + "location": { + "longitude": 11.675679568631669, + "latitude": 57.73437381890552, + "city": "Öckerö", + "cp": "47537" + }, + "metadata": { + "address": "Västergårdsvägen 17, 475 37, Björkö", + "business_hours": null, + "phone_number": "031-712 76 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Hönö Vårdcentral, Hönö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Hono-Vardcentral-Hono/", + "location": { + "longitude": 11.650773527550722, + "latitude": 57.69646930289951, + "city": "Öckerö", + "cp": "47540" + }, + "metadata": { + "address": "Minkebergsvägen 3 A, 475 40, Hönö", + "business_hours": null, + "phone_number": "031-712 76 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "JohannesVården - Vårdcentral och BVC, Tynnered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/JohannesVarden-Vardcentral-och-BVC-Tynnered/", + "location": { + "longitude": 11.892488175274654, + "latitude": 57.65266628633251, + "city": "Göteborg", + "cp": "42655" + }, + "metadata": { + "address": "Trollbärsvägen 16 A, 426 55, Västra Frölunda", + "business_hours": null, + "phone_number": "031-89 29 30" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "KRY Borås Kongress", + "url": "https://www.1177.se/hitta-vard/kontaktkort/KRY-Boras-Kongress/", + "location": { + "longitude": 12.939755080586718, + "latitude": 57.72493911757651, + "city": "Borås", + "cp": "50332" + }, + "metadata": { + "address": "Akademiplatsen 2, 503 32, Borås", + "business_hours": null, + "phone_number": "010-150 78 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "KRY Chalmers Huvudentré Kårhuset", + "url": "https://www.1177.se/hitta-vard/kontaktkort/KRY-Chalmers-Huvudentre-Karhuset/", + "location": { + "longitude": 11.974175624697219, + "latitude": 57.68944911049855, + "city": "Göteborg", + "cp": "41258" + }, + "metadata": { + "address": "Chalmersplatsen 1, 412 58, Göteborg", + "business_hours": null, + "phone_number": "010-150 78 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "KRY Lindholmen Science Park", + "url": "https://www.1177.se/hitta-vard/kontaktkort/KRY-Lindholmen-Science-Park/", + "location": { + "longitude": 11.940145436230594, + "latitude": 57.70718794709474, + "city": "Göteborg", + "cp": "41756" + }, + "metadata": { + "address": "Lindholmspiren 3-5, 417 56, Göteborg", + "business_hours": null, + "phone_number": "010-150 78 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "KRY Scandic Swania", + "url": "https://www.1177.se/hitta-vard/kontaktkort/KRY-Scandic-Swania/", + "location": { + "longitude": 12.285555008920142, + "latitude": 58.284624929966704, + "city": "Trollhättan", + "cp": "46130" + }, + "metadata": { + "address": "Storgatan 47-49, 461 30, Trollhättan", + "business_hours": null, + "phone_number": "010-150 78 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Ale Torg", + "url": "https://bokning.mittvaccin.se/klinik/2096", + "location": { + "longitude": 12.044997375261856, + "latitude": 57.89219488653275, + "city": "Ale", + "cp": "44931" + }, + "metadata": { + "address": "Ale Torg 7, 449 31, Nödinge", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2096", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Alingsås", + "url": "https://bokning.mittvaccin.se/klinik/2086", + "location": { + "longitude": 12.537011564676016, + "latitude": 57.930104216081595, + "city": "Alingsås", + "cp": "44131" + }, + "metadata": { + "address": "Kungsgatan 34, 441 31, Alingsås", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2086", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Borås", + "url": "https://bokning.mittvaccin.se/klinik/2081", + "location": { + "longitude": 12.942756406174066, + "latitude": 57.72053321567715, + "city": "Borås", + "cp": "50337" + }, + "metadata": { + "address": "Allégatan 43, 503 37, Borås", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2081", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Eriksbergs Köpcentrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Eriksbergs-Kopcentrum/", + "location": { + "longitude": 11.920836722421315, + "latitude": 57.7093732335908, + "city": "Mölndal", + "cp": "41761" + }, + "metadata": { + "address": "Kolhamnsgatan 1, 417 61, Göteborg", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Färgelanda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Fargelanda/", + "location": { + "longitude": 11.997559328231395, + "latitude": 58.56797236280273, + "city": "Färgelanda", + "cp": "45830" + }, + "metadata": { + "address": "Centrumvägen 10, 458 30, Färgelanda", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Henån", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Henan/", + "location": { + "longitude": 11.678746102430615, + "latitude": 58.235385114105505, + "city": "Orust", + "cp": "47332" + }, + "metadata": { + "address": "Centrumhuset, 473 32, Henån", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Hisingsbacka", + "url": "https://bokning.mittvaccin.se/klinik/2091", + "location": { + "longitude": 11.98214942257889, + "latitude": 57.75033771020452, + "city": "Göteborg", + "cp": "42248" + }, + "metadata": { + "address": "Selma Lagerlöfs Torg 1, 422 48, Hisings-Backa", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2091", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Hjo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Hjo/", + "location": { + "longitude": 14.293389746449353, + "latitude": 58.30557753778634, + "city": "Hjo", + "cp": "54433" + }, + "metadata": { + "address": "Bangatan 13, 544 33, Hjo", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Kongahälla Shoppingcenter", + "url": "https://bokning.mittvaccin.se/klinik/2082", + "location": { + "longitude": 11.968365285147007, + "latitude": 57.8728591232219, + "city": "Kungälv", + "cp": "44248" + }, + "metadata": { + "address": "Älvebacken 1, 442 48, Kungälv", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2082", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Kungsportsplatsen", + "url": "https://bokning.mittvaccin.se/klinik/2087", + "location": { + "longitude": 11.968732780142346, + "latitude": 57.70440095117113, + "city": "Göteborg", + "cp": "41116" + }, + "metadata": { + "address": "Vallgatan 42, 411 16, Göteborg", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2087", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Lerum Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Lerum-Vardcentral/", + "location": { + "longitude": 12.266172128543943, + "latitude": 57.76856729235699, + "city": "Lerum", + "cp": "44330" + }, + "metadata": { + "address": "Göteborgsvägen 9, 443 30, Lerum", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Mariestad Vårdcentral", + "url": "https://bokning.mittvaccin.se/klinik/2079", + "location": { + "longitude": 13.796178135977993, + "latitude": 58.705451405375015, + "city": "Mariestad", + "cp": 0 + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2079", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Mölnlycke Centrum", + "url": "https://bokning.mittvaccin.se/klinik/2095", + "location": { + "longitude": 12.117072418558651, + "latitude": 57.65809431018721, + "city": "Härryda", + "cp": "43530" + }, + "metadata": { + "address": "Biblioteksgatan 4A, 435 30, Mölnlycke", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2095", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Nordby Shoppingcenter", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Nordby-Shoppingcenter/", + "location": { + "longitude": 11.208147009145923, + "latitude": 59.06417575173668, + "city": "Strömstad", + "cp": "45270" + }, + "metadata": { + "address": "Nordby Shoppingcenter, 452 70, Strömstad", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Partille Port", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Partille-Port/", + "location": { + "longitude": 12.116176389766768, + "latitude": 57.740594314431846, + "city": "Partille", + "cp": "43338" + }, + "metadata": { + "address": "Gamla Kronvägen 31-37, 433 38, Partille", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Skene", + "url": "https://bokning.mittvaccin.se/klinik/2084", + "location": { + "longitude": 12.645608292977906, + "latitude": 57.49131915795585, + "city": "Mark", + "cp": 0 + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2084", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Strömstad", + "url": "https://bokning.mittvaccin.se/klinik/2083", + "location": { + "longitude": 11.170701456759991, + "latitude": 58.93868539287202, + "city": "Strömstad", + "cp": "45230" + }, + "metadata": { + "address": "Södra Hamngatan 4, 452 30, Strömstad", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2083", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Torslanda", + "url": "https://bokning.mittvaccin.se/klinik/2090", + "location": { + "longitude": 11.774456734363756, + "latitude": 57.709823197639466, + "city": "Göteborg", + "cp": "42337" + }, + "metadata": { + "address": "Gamla flygplatsvägen 40, 423 37, Torslanda", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2090", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kronans-Apotek-Uddevalla/", + "location": { + "longitude": 11.932627200026982, + "latitude": 58.3492876506819, + "city": "Uddevalla", + "cp": "45131" + }, + "metadata": { + "address": "Västerlånggatan 2, 451 31, Uddevalla", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Vara Vårdcentral", + "url": "https://bokning.mittvaccin.se/klinik/2089", + "location": { + "longitude": 12.9674298537439, + "latitude": 58.264324445520145, + "city": "Vara", + "cp": "53432" + }, + "metadata": { + "address": "Allégatan 46, 534 32, Vara", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2089", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Wieselgrensplatsen", + "url": "https://bokning.mittvaccin.se/klinik/2078", + "location": { + "longitude": 11.93755204751039, + "latitude": 57.72172249873233, + "city": "Göteborg", + "cp": "41717" + }, + "metadata": { + "address": "Wieselgrensplatsen 5, 417 17, Göteborg", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2078", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Överby Köpcenter", + "url": "https://bokning.mittvaccin.se/klinik/2092", + "location": { + "longitude": 12.302888643822998, + "latitude": 58.31412476754703, + "city": "Trollhättan", + "cp": "46170" + }, + "metadata": { + "address": "Överby Köpcentrum, 461 70, Trollhättan", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2092", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kronans Apotek MediCheck Överby Köpcenter", + "url": "https://bokning.mittvaccin.se/klinik/2093", + "location": { + "longitude": 12.302888643822998, + "latitude": 58.31412476754703, + "city": "Trollhättan", + "cp": "46170" + }, + "metadata": { + "address": "Överby Köpcentrum, 461 70, Trollhättan", + "business_hours": null, + "phone_number": "08-128 446 21" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2093", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kvarterskliniken Avenyn, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kvarterskliniken-Avenyn-Centrum/", + "location": { + "longitude": 11.976381348057583, + "latitude": 57.699069639675415, + "city": "Göteborg", + "cp": "41136" + }, + "metadata": { + "address": "Kungsportsavenyen 33, 411 36, Göteborg", + "business_hours": null, + "phone_number": "031-339 99 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kvarterskliniken Husaren, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kvarterskliniken-Husaren-Centrum/", + "location": { + "longitude": 11.95905942248231, + "latitude": 57.69652147829914, + "city": "Göteborg", + "cp": "41122" + }, + "metadata": { + "address": "Husargatan 44, 411 22, Göteborg", + "business_hours": null, + "phone_number": "031-339 93 09" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kvarterskliniken Lorensberg, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kvarterskliniken-Lorensberg-Centrum/", + "location": { + "longitude": 11.976381348057583, + "latitude": 57.699069639675415, + "city": "Göteborg", + "cp": "41136" + }, + "metadata": { + "address": "Kungsportsavenyen 33, 411 36, Göteborg", + "business_hours": null, + "phone_number": "031-339 93 03" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Kvarterskliniken Tanum, Tanumshede", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Kvarterskliniken-Tanum-Tanumshede/", + "location": { + "longitude": 11.32476905351501, + "latitude": 58.72477631304419, + "city": "Tanum", + "cp": "45730" + }, + "metadata": { + "address": "Affärsvägen 12, 457 30, Tanumshede", + "business_hours": null, + "phone_number": "0525-640 40" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Ale Älvängenhallen", + "url": "https://patient.nu/portal/public/calendar/28cd6fdc-b7a1-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.1231186790822, + "latitude": 57.954113595951064, + "city": "Ale", + "cp": "44632" + }, + "metadata": { + "address": "Hövägen 23, 446 32, Älvängen", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "28cd6fdc-b7a1-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Alingsås Östlyckehallen", + "url": "https://patient.nu/portal/public/calendar/95daa3d9-b7a2-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.546677101096787, + "latitude": 57.932661838378564, + "city": "Alingsås", + "cp": "44136" + }, + "metadata": { + "address": "Vintergatan 8, 441 36, Alingsås", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "95daa3d9-b7a2-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Biskopsgården Vårväderstorget", + "url": "https://patient.nu/portal/public/calendar/1047469d-b717-11eb-91e2-fa163e329242", + "location": { + "longitude": 11.89252885491984, + "latitude": 57.71276036321714, + "city": "Göteborg", + "cp": "41831" + }, + "metadata": { + "address": "Vårväderstorget 1, 418 31, Göteborg", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1047469d-b717-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Bollebygd Gästgivarevägen", + "url": "https://patient.nu/portal/public/calendar/eea396f8-b7a6-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.571494645486135, + "latitude": 57.669033076628935, + "city": "Bollebygd", + "cp": "51736" + }, + "metadata": { + "address": "Gästgivarevägen 1, 517 36, Bollebygd", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "eea396f8-b7a6-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Borås Magasingatan", + "url": "https://patient.nu/portal/public/calendar/42779353-b7a7-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.932784246637553, + "latitude": 57.7220050839182, + "city": "Borås", + "cp": "50435" + }, + "metadata": { + "address": "Magasinsgatan 12-14, 504 35, Borås, parkeringsplats", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "42779353-b7a7-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Göteborg Hedens Evenemangsyta", + "url": "https://patient.nu/portal/public/calendar/64d1591b-b718-11eb-91e2-fa163e329242", + "location": { + "longitude": 11.978606992901494, + "latitude": 57.70406216906155, + "city": "Göteborg", + "cp": "41138" + }, + "metadata": { + "address": "Parkgatan 43, 411 38, Göteborg, Hedens Evenemangsyta", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "64d1591b-b718-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Hammarkullen", + "url": "https://patient.nu/portal/public/calendar/72bef32a-b715-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.035271913567115, + "latitude": 57.780780785520115, + "city": "Göteborg", + "cp": "42437" + }, + "metadata": { + "address": "Hammarkulletorget 61, 424 37, Göteborg", + "business_hours": null, + "phone_number": "010-55 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "72bef32a-b715-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Herrljunga - Sportcenter", + "url": "https://patient.nu/portal/public/calendar/0621d4e8-b7a4-11eb-91e2-fa163e329242", + "location": { + "longitude": 13.021385897199472, + "latitude": 58.07645853860006, + "city": "Herrljunga", + "cp": "52430" + }, + "metadata": { + "address": "Östra parkgatan 10, 524 30, Herrljunga", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "0621d4e8-b7a4-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Härryda Landvetter P7 parkeringsplats", + "url": "https://patient.nu/portal/public/calendar/20062152-b6fd-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.303425597280713, + "latitude": 57.6717996145519, + "city": "Göteborg", + "cp": "43870" + }, + "metadata": { + "address": "Flygvingevägen, 438 70, Göteborg", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "20062152-b6fd-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Kungälv Kvarnkullen", + "url": "https://patient.nu/portal/public/calendar/b56bb4f5-b719-11eb-91e2-fa163e329242", + "location": { + "longitude": 11.970051430514664, + "latitude": 57.870016224008445, + "city": "Kungälv", + "cp": "44235" + }, + "metadata": { + "address": "Kvarngatan 8, 442 35, Kungälv", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "b56bb4f5-b719-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Lerum Vättlehallen sporthall", + "url": "https://patient.nu/portal/public/calendar/67a5051b-b6fb-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.309313018855278, + "latitude": 57.79404635238832, + "city": "Lerum", + "cp": "44360" + }, + "metadata": { + "address": "Gråbovägen 19, 443 60, Stenkullen", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "67a5051b-b6fb-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Lilla Edet - Strömshallen Sporthall", + "url": "https://patient.nu/portal/public/calendar/141436bd-b7a4-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.109206177660521, + "latitude": 58.14244545163647, + "city": "Lilla Edet", + "cp": "46332" + }, + "metadata": { + "address": "Brodalsvägen 1, 463 32, Lilla Edet", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "141436bd-b7a4-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Mark - Kunskapens hus Arenahallen", + "url": "https://patient.nu/portal/public/calendar/9ea48350-b7a4-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.66479264988111, + "latitude": 57.49738732223842, + "city": "Mark", + "cp": "51180" + }, + "metadata": { + "address": "Varbergsvägen 6, 511 80, Kinna", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "9ea48350-b7a4-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Mark - Kunskapens hus Arenahallen", + "url": "https://patient.nu/portal/public/calendar/9ea48350-b7a4-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.66479264988111, + "latitude": 57.49738732223842, + "city": "Mark", + "cp": "51180" + }, + "metadata": { + "address": "Varbergsvägen 6, 511 80, Kinna", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "9ea48350-b7a4-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Mölndal - Aktiviteten", + "url": "https://patient.nu/portal/public/calendar/41c9986a-b7a5-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.005302168744086, + "latitude": 57.65603029163521, + "city": "Mölndal", + "cp": "43143" + }, + "metadata": { + "address": "Frejagatan 1, 431 43, Mölndal", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "41c9986a-b7a5-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Partille - Torg Gamla Swedbank", + "url": "https://patient.nu/portal/public/calendar/66fc5735-b6fb-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.107198437581522, + "latitude": 57.739649142536905, + "city": "Partille", + "cp": "43333" + }, + "metadata": { + "address": "Kyrktorget 10, 433 33, Partille", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "66fc5735-b6fb-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Stenungsund - Stenungskolans idrottshall", + "url": "https://patient.nu/portal/public/calendar/67b4ce21-b6fb-11eb-91e2-fa163e329242", + "location": { + "longitude": 11.82507526581326, + "latitude": 58.06930321307741, + "city": "Stenungsund", + "cp": "44440" + }, + "metadata": { + "address": "Doterödsvägen 2, 444 40, Stenungsund", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "67b4ce21-b6fb-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Svenljunga - Moga Fritid Sporthall", + "url": "https://patient.nu/portal/public/calendar/39cb3573-b7a5-11eb-91e2-fa163e329242", + "location": { + "longitude": 13.121467536537295, + "latitude": 57.49125641213009, + "city": "Svenljunga", + "cp": "51254" + }, + "metadata": { + "address": "Simmaregatan 1, 512 54, Svenljunga", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "39cb3573-b7a5-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Tjörn - Skärhamnsskolans idrottshall", + "url": "https://patient.nu/portal/public/calendar/34bb3d38-b7a6-11eb-91e2-fa163e329242", + "location": { + "longitude": 11.556099766991725, + "latitude": 57.991246486003455, + "city": "Tjörn", + "cp": "47131" + }, + "metadata": { + "address": "Tubbegatan 48, 471 31, Skärhamn", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "34bb3d38-b7a6-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Tranemo - Tranängsskolans Aula", + "url": "https://patient.nu/portal/public/calendar/b6e915be-b7a5-11eb-91e2-fa163e329242", + "location": { + "longitude": 13.343463979537653, + "latitude": 57.488943021523035, + "city": "Tranemo", + "cp": "51433" + }, + "metadata": { + "address": "Brogatan 18, 514 33, Tranemo", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "b6e915be-b7a5-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Ulricehamn - Fotbollshallen på Lassalyckan", + "url": "https://patient.nu/portal/public/calendar/f36e3ba9-b7a5-11eb-91e2-fa163e329242", + "location": { + "longitude": 13.437272676176793, + "latitude": 57.785078206630835, + "city": "Ulricehamn", + "cp": "52333" + }, + "metadata": { + "address": "Idrottsgatan 8, 523 33, Ulricehamn", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "f36e3ba9-b7a5-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Vårgårda - Sporthall", + "url": "https://patient.nu/portal/public/calendar/5d7986b9-b7a8-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.82276177292432, + "latitude": 58.035565695408444, + "city": "Vårgårda", + "cp": "44731" + }, + "metadata": { + "address": "Parkgatan 26, 447 31, Vårgårda", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "5d7986b9-b7a8-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Legehuset Öckerö - Öckerö Hamnplan Parkeringsplats", + "url": "https://patient.nu/portal/public/calendar/93a36711-b7a7-11eb-91e2-fa163e329242", + "location": { + "longitude": 11.657441289639424, + "latitude": 57.70787962581244, + "city": "Öckerö", + "cp": "47531" + }, + "metadata": { + "address": "Stranden 2, 475 31, Öckerö", + "business_hours": null, + "phone_number": "010-550 26 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "93a36711-b7a7-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Lextorp Vårdcentral, Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Lextorp-Vardcentral-Trollhattan/", + "location": { + "longitude": 12.297794768199372, + "latitude": 58.262497838986114, + "city": "Trollhättan", + "cp": "46163" + }, + "metadata": { + "address": "Lextorpsvägen 5 B, 461 63, Trollhättan", + "business_hours": null, + "phone_number": "0520-700 44" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Lidköping, Framnäsvägen 3", + "url": "https://www.vaccina.se/covidvaccin/vastra-gotaland/tidsbokning/#/service", + "location": { + "longitude": 13.1407915, + "latitude": 58.5081575, + "city": "Lidköping", + "cp": "53154" + }, + "metadata": { + "address": "Framnäsvägen 3, 531 54 Lidköping", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30632, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Läkargruppen Mölndalsbro, Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Lakargruppen-Molndalsbro-Molndal/", + "location": { + "longitude": 12.015214442660811, + "latitude": 57.6551957322358, + "city": "Mölndal", + "cp": "43131" + }, + "metadata": { + "address": "Nygatan 1, 431 31, Mölndal", + "business_hours": null, + "phone_number": "031-67 55 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Läkarhus Kyrkbyn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Lakarhus-Kyrkbyn/", + "location": { + "longitude": 11.907354221641706, + "latitude": 57.70904806254016, + "city": "Göteborg", + "cp": "41873" + }, + "metadata": { + "address": "Eketrägatan 3, 418 73, Göteborg", + "business_hours": null, + "phone_number": "031-393 98 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Maria Alberts Vårdcentral, Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Maria-Alberts-Vardcentral-Trollhattan/", + "location": { + "longitude": 12.291936166618388, + "latitude": 58.28341689091317, + "city": "Trollhättan", + "cp": "46132" + }, + "metadata": { + "address": "Djupebäcksgatan 21C, 461 32, Trollhättan", + "business_hours": null, + "phone_number": "0520-40 01 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medical vårdcentral Bergsjön", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Medical-vardcentral-Bergsjon/", + "location": { + "longitude": 12.071075249958293, + "latitude": 57.76286168233871, + "city": "Göteborg", + "cp": "41568" + }, + "metadata": { + "address": "Ljusårsvägen 100, 415 68, Göteborg", + "business_hours": null, + "phone_number": "031-22 23 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medipart Partille Vårdcentral och BVC", + "url": "https://patient.nu/portal/public/calendar/b24e2b1b-b225-11eb-91e2-fa163e329242", + "location": { + "longitude": 12.107305375007627, + "latitude": 57.73958936116547, + "city": "Partille", + "cp": "43333" + }, + "metadata": { + "address": "Gamla Kronvägen 13A, 433 33, Partille", + "business_hours": null, + "phone_number": "031-390 99 00" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "b24e2b1b-b225-11eb-91e2-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medpro Clinic Brålanda-Torpa Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Medpro-Clinic-Bralanda-Torpa-Vardcentral/", + "location": { + "longitude": 12.33339732996107, + "latitude": 58.36756670888786, + "city": "Vänersborg", + "cp": "46236" + }, + "metadata": { + "address": "Torpavägen 23, 462 36, Vänersborg", + "business_hours": null, + "phone_number": "0521-27 82 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medpro Clinic Lilla Edet Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Medpro-Clinic-Lilla-Edet-Vardcentral/", + "location": { + "longitude": 12.12511291793147, + "latitude": 58.13454871363859, + "city": "Lilla Edet", + "cp": "46330" + }, + "metadata": { + "address": "Järnvägsgatan 8, 463 30, Lilla Edet", + "business_hours": null, + "phone_number": "0520-48 88 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medpro Clinic Noltorp Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Medpro-Clinic-Noltorp-Vardcentral/", + "location": { + "longitude": 12.519350578906003, + "latitude": 57.93871404370178, + "city": "Alingsås", + "cp": "44155" + }, + "metadata": { + "address": "Säterigatan 122, 441 55, Alingsås", + "business_hours": null, + "phone_number": "0322-65 15 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medpro Clinic Stavre Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Medpro-Clinic-Stavre-Vardcentral/", + "location": { + "longitude": 12.31962427113697, + "latitude": 58.28810238506135, + "city": "Trollhättan", + "cp": "46140" + }, + "metadata": { + "address": "Slättbergsvägen 56, 461 40, Trollhättan", + "business_hours": null, + "phone_number": "0520-49 01 01" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Medpro Clinic Åmål Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Medpro-Clinic-Amal-Vardcentral/", + "location": { + "longitude": 12.705136991763839, + "latitude": 59.0491706019796, + "city": "Åmål", + "cp": "66230" + }, + "metadata": { + "address": "Södra Långgatan 3 B, 662 30, Åmål", + "business_hours": null, + "phone_number": "0532-70 94 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Min Doktor Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Min-Doktor-Boras/", + "location": { + "longitude": 12.94301520107444, + "latitude": 57.71045943353963, + "city": "Borås", + "cp": "00000" + }, + "metadata": { + "address": "Trandögatan 16, Borås, Vid ICA MAXI", + "business_hours": null, + "phone_number": "010-330 92 11" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Min Doktor Kungälv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Min-Doktor-Kungalv/", + "location": { + "longitude": 11.97269825580226, + "latitude": 57.87477868972892, + "city": "Kungälv", + "cp": "00000" + }, + "metadata": { + "address": "Gymnasiegatan, Kungälv, Vid ICA MAXI", + "business_hours": null, + "phone_number": "010-330 92 11" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Min Doktor Nordstan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Min-Doktor-Nordstan/", + "location": { + "longitude": 11.969544341550826, + "latitude": 57.707993614544016, + "city": "Göteborg", + "cp": "00000" + }, + "metadata": { + "address": "Götgatan 12, Göteborg, inne på Apotek Hjärtat", + "business_hours": null, + "phone_number": "010-330 92 11" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nya Vårdcentralen Kortedala Torg, Kortedala", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Nya-Vardcentralen-Kortedala-Torg-Kortedala/", + "location": { + "longitude": 12.032389998317138, + "latitude": 57.75151361117876, + "city": "Göteborg", + "cp": "41535" + }, + "metadata": { + "address": "Tusenårsgatan 3, 415 35, Göteborg", + "business_hours": null, + "phone_number": "031-383 75 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Angered vårdcentral, Angered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Angered-vardcentral-Angered/", + "location": { + "longitude": 12.047973336158215, + "latitude": 57.79711951889811, + "city": "Göteborg", + "cp": "42465" + }, + "metadata": { + "address": "Halmtorget 1, 424 65, Angered", + "business_hours": null, + "phone_number": "031-747 96 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Backa vårdcentral, Hisings Backa", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Backa-vardcentral-Hisings-Backa/", + "location": { + "longitude": 11.98674033638669, + "latitude": 57.74745662209048, + "city": "Göteborg", + "cp": "42255" + }, + "metadata": { + "address": "Rimmaregatan 2, 422 55, Hisings Backa", + "business_hours": null, + "phone_number": "031-742 73 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Bengtsfors vårdcentral, Bengtsfors", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Bengtsfors-vardcentral-Bengtsfors/", + "location": { + "longitude": 12.226112097775328, + "latitude": 59.028727419559125, + "city": "Bengtsfors", + "cp": "66630" + }, + "metadata": { + "address": "Storgatan 7, 666 30, Bengtsfors", + "business_hours": null, + "phone_number": "010-441 63 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Billingen vårdcentral, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Billingen-vardcentral-Skovde/", + "location": { + "longitude": 13.838496541164547, + "latitude": 58.400514096291346, + "city": "Skövde", + "cp": "54141" + }, + "metadata": { + "address": "Ekängsvägen 15, 541 41, Skövde", + "business_hours": null, + "phone_number": "0500-44 71 20" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Biskopsgården vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Biskopsgarden-vardcentral-Goteborg/", + "location": { + "longitude": 11.893887978571199, + "latitude": 57.713548415239046, + "city": "Göteborg", + "cp": "41833" + }, + "metadata": { + "address": "Höstvädersgatan 1, 418 33, Göteborg", + "business_hours": null, + "phone_number": "031-747 94 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Bjurslätt vårdcentral, Hisingen Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Bjurslatt-vardcentral-Hisingen-Goteborg/", + "location": { + "longitude": 11.926242539054694, + "latitude": 57.72944694018121, + "city": "Göteborg", + "cp": "41725" + }, + "metadata": { + "address": "Bjurslätts torg 6, 417 25, Göteborg", + "business_hours": null, + "phone_number": "031-747 84 30" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Björkekärr vårdcentral, Björkekärr", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Bjorkekarr-vardcentral-Bjorkekarr/", + "location": { + "longitude": 12.047195375941506, + "latitude": 57.715484587258814, + "city": "Göteborg", + "cp": "41680" + }, + "metadata": { + "address": "Stabbegatan 2B, 416 80, Göteborg", + "business_hours": null, + "phone_number": "031-345 06 51" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Boda vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Boda-vardcentral-Boras/", + "location": { + "longitude": 12.989126086078096, + "latitude": 57.72941651939499, + "city": "Borås", + "cp": "50742" + }, + "metadata": { + "address": "Smörhulegatan 2, 507 42, Borås", + "business_hours": null, + "phone_number": "010-435 80 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Bollebygd vårdcentral, Bollebygd", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Bollebygd-vardcentral-Bollebygd/", + "location": { + "longitude": 12.571998004692631, + "latitude": 57.66959404213807, + "city": "Bollebygd", + "cp": "51736" + }, + "metadata": { + "address": "Gästgivarevägen 8, 517 36, Bollebygd", + "business_hours": null, + "phone_number": "010-441 61 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Brämaregården vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Bramaregarden-vardcentral-Goteborg/", + "location": { + "longitude": 11.94001800612431, + "latitude": 57.72049470911521, + "city": "Göteborg", + "cp": "41709" + }, + "metadata": { + "address": "Virvelvindsgatan 8A, 417 09, Göteborg", + "business_hours": null, + "phone_number": "031-747 95 30" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Bäckefors vårdcentral, Bäckefors", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Backefors-vardcentral-Backefors/", + "location": { + "longitude": 12.160720841982258, + "latitude": 58.79796664305947, + "city": "Bengtsfors", + "cp": "66888" + }, + "metadata": { + "address": "Dalslands Sjukhus, 668 88, BÄCKEFORS", + "business_hours": null, + "phone_number": "010-441 67 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Dagson vårdcentral, Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Dagson-vardcentral-Uddevalla/", + "location": { + "longitude": 11.933470811811917, + "latitude": 58.34829766300749, + "city": "Uddevalla", + "cp": "45140" + }, + "metadata": { + "address": "Södergatan 11, 451 40, Uddevalla", + "business_hours": null, + "phone_number": "010-441 64 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Dalaberg vårdcentral, Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Dalaberg-vardcentral-Uddevalla/", + "location": { + "longitude": 11.93511532037346, + "latitude": 58.37135454226647, + "city": "Uddevalla", + "cp": "45172" + }, + "metadata": { + "address": "Lövskogsgatan 8, 451 72, Uddevalla", + "business_hours": null, + "phone_number": "010-441 68 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Dals-Ed vårdcentral, Ed", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Dals-Ed-vardcentral-Ed/", + "location": { + "longitude": 11.939899066195611, + "latitude": 58.91098260368552, + "city": "Dals-Ed", + "cp": "66830" + }, + "metadata": { + "address": "Storgatan 7A, 668 30, Ed", + "business_hours": null, + "phone_number": "010-441 63 60" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Dalsjöfors vårdcentral, Dalsjöfors", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Dalsjofors-vardcentral-Dalsjofors/", + "location": { + "longitude": 13.096168202073972, + "latitude": 57.713877232505055, + "city": "Borås", + "cp": "51634" + }, + "metadata": { + "address": "Uppegårdsgatan 2, 516 34, Dalsjöfors", + "business_hours": null, + "phone_number": "010-435 90 40" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ekmanska vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Ekmanska-vardcentral-Goteborg/", + "location": { + "longitude": 12.009477871610882, + "latitude": 57.700733014407476, + "city": "Göteborg", + "cp": "41274" + }, + "metadata": { + "address": "Lillkullegatan 21A, 412 74, Göteborg", + "business_hours": null, + "phone_number": "031-747 92 60" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Eriksberg vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Eriksberg-vardcentral-Goteborg/", + "location": { + "longitude": 11.9151408702038, + "latitude": 57.70143266325737, + "city": "Göteborg", + "cp": "41764" + }, + "metadata": { + "address": "Sjöporten 4, 417 64, Göteborg", + "business_hours": null, + "phone_number": "031-747 97 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Fjällbacka vårdcentral, Fjällbacka", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Fjallbacka-vardcentral-Fjallbacka/", + "location": { + "longitude": 11.291423918356116, + "latitude": 58.596945683192644, + "city": "Tanum", + "cp": "45740" + }, + "metadata": { + "address": "Nestorsvägen 2, 457 40, Fjällbacka", + "business_hours": null, + "phone_number": "010-441 51 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Floda vårdcentral, Floda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Floda-vardcentral-Floda/", + "location": { + "longitude": 12.36108286359278, + "latitude": 57.80808108724456, + "city": "Lerum", + "cp": "44830" + }, + "metadata": { + "address": "Rurik Holms väg 10A, 448 30, Floda", + "business_hours": null, + "phone_number": "010-435 93 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Fristad vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Fristad-vardcentral-Boras/", + "location": { + "longitude": 13.014854344290775, + "latitude": 57.82805751912103, + "city": "Borås", + "cp": "51333" + }, + "metadata": { + "address": "Tärnavägen 6, 513 33, Fristad", + "business_hours": null, + "phone_number": "010-435 96 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Frölunda vårdcentral, Västra Frölunda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Frolunda-vardcentral-Vastra-Frolunda/", + "location": { + "longitude": 11.910853666570732, + "latitude": 57.65072640046686, + "city": "Göteborg", + "cp": "42142" + }, + "metadata": { + "address": "Frölunda Torg 11, 421 42, Västra Frölunda", + "business_hours": null, + "phone_number": "031-346 07 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Furulund vårdcentral, Partille", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Furulund-vardcentral-Partille/", + "location": { + "longitude": 12.129754883474398, + "latitude": 57.72520887265113, + "city": "Partille", + "cp": "43347" + }, + "metadata": { + "address": "Tingsvägen 2, 433 47, Partille", + "business_hours": null, + "phone_number": "010-473 39 25" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Färgelanda vårdcentral, Färgelanda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Fargelanda-vardcentral-Fargelanda/", + "location": { + "longitude": 11.988027196467597, + "latitude": 58.559789793484924, + "city": "Färgelanda", + "cp": "45832" + }, + "metadata": { + "address": "Håvestensvägen 5A, 458 32, Färgelanda", + "business_hours": null, + "phone_number": "010-441 50 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Gamlestadstorget vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Gamlestadstorget-vardcentral-Goteborg/", + "location": { + "longitude": 12.006602322684396, + "latitude": 57.726871606710695, + "city": "Göteborg", + "cp": "41511" + }, + "metadata": { + "address": "Gamlestadsvägen 4, 415 11, Göteborg", + "business_hours": null, + "phone_number": "031-345 07 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Gibraltargatan vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Gibraltargatan-vardcentral-Goteborg/", + "location": { + "longitude": 11.977675883436318, + "latitude": 57.69190090906697, + "city": "Göteborg", + "cp": "41132" + }, + "metadata": { + "address": "Gibraltargatan 1C, 411 32, Göteborg", + "business_hours": null, + "phone_number": "031-747 87 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Gråbo vårdcentral, Gråbo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Grabo-vardcentral-Grabo/", + "location": { + "longitude": 12.299116297268576, + "latitude": 57.833707007952505, + "city": "Lerum", + "cp": "44342" + }, + "metadata": { + "address": "Lundbyvägen 35-37, 443 42, Gråbo", + "business_hours": null, + "phone_number": "010-435 87 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Guldvingen vårdcentral, Lidköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Guldvingen-vardcentral-Lidkoping/", + "location": { + "longitude": 13.166535730394084, + "latitude": 58.49404628267563, + "city": "Lidköping", + "cp": "53137" + }, + "metadata": { + "address": "Östbygatan 21, 531 37, Lidköping", + "business_hours": null, + "phone_number": "0510-869 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Gullspång vårdcentral - Hova, Hova", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Gullspang-vardcentral-Hova-Hova/", + "location": { + "longitude": 14.212334915115905, + "latitude": 58.85776414269381, + "city": "Gullspång", + "cp": "54832" + }, + "metadata": { + "address": "Roslunds väg 5, 548 32, Hova", + "business_hours": null, + "phone_number": "0551-283 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Gullspång vårdcentral, Gullspång", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Gullspang-vardcentral-Gullspang/", + "location": { + "longitude": 14.087201565584614, + "latitude": 58.980150476140516, + "city": "Gullspång", + "cp": "54731" + }, + "metadata": { + "address": "Hemgatan 12, 547 31, Gullspång", + "business_hours": null, + "phone_number": "0551-283 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Götene vårdcentral, Götene", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Gotene-vardcentral-Gotene/", + "location": { + "longitude": 13.494655205989858, + "latitude": 58.52778841850925, + "city": "Götene", + "cp": "53330" + }, + "metadata": { + "address": "Torggatan 4, 533 30, Götene", + "business_hours": null, + "phone_number": "0511-308 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Heimdal vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Heimdal-vardcentral-Boras/", + "location": { + "longitude": 12.941817893326338, + "latitude": 57.72284771980293, + "city": "Borås", + "cp": "50334" + }, + "metadata": { + "address": "Stengärdsgatan 22, 503 34, Borås", + "business_hours": null, + "phone_number": "010-435 91 70" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Hentorp vårdcentral, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Hentorp-vardcentral-Skovde/", + "location": { + "longitude": 13.828430078840087, + "latitude": 58.3701134944045, + "city": "Skövde", + "cp": "54154" + }, + "metadata": { + "address": "Gröna vägen 40 A, 541 54, Skövde", + "business_hours": null, + "phone_number": "0500-44 70 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Herrestad vårdcentral, Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Herrestad-vardcentral-Uddevalla/", + "location": { + "longitude": 11.84496382791307, + "latitude": 58.35033088496779, + "city": "Uddevalla", + "cp": "45175" + }, + "metadata": { + "address": "Lingatan 12, 451 75, Uddevalla", + "business_hours": null, + "phone_number": "010-441 64 40" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Herrljunga vårdcentral, Herrljunga", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Herrljunga-vardcentral-Herrljunga/", + "location": { + "longitude": 13.014756700887173, + "latitude": 58.07601692547374, + "city": "Herrljunga", + "cp": "52432" + }, + "metadata": { + "address": "Horsbyvägen 16A, 524 32, Herrljunga", + "business_hours": null, + "phone_number": "0513-177 20" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Hjo vårdcentral, Hjo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Hjo-vardcentral-Hjo/", + "location": { + "longitude": 14.300502447849361, + "latitude": 58.31001646470293, + "city": "Hjo", + "cp": "54436" + }, + "metadata": { + "address": "Karlsborgsvägen 4A, 544 36, Hjo", + "business_hours": null, + "phone_number": "0503-227 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Hjällbo vårdcentral, Angered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Hjallbo-vardcentral-Angered/", + "location": { + "longitude": 12.019113619366982, + "latitude": 57.76865101484537, + "city": "Göteborg", + "cp": "42432" + }, + "metadata": { + "address": "Bergsgårdsgärdet 89B, 424 32, Angered", + "business_hours": null, + "phone_number": "031-747 83 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Horred vårdcentral, Horred", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Horred-vardcentral-Horred/", + "location": { + "longitude": 12.474855001612735, + "latitude": 57.355767206835885, + "city": "Mark", + "cp": "51930" + }, + "metadata": { + "address": "Lunnaliden 4, 519 30, Horred", + "business_hours": null, + "phone_number": "010-473 39 33" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Högsbo vårdcentral, Högsbo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Hogsbo-vardcentral-Hogsbo/", + "location": { + "longitude": 11.92872453223031, + "latitude": 57.67003361491877, + "city": "Göteborg", + "cp": "41480" + }, + "metadata": { + "address": "Markmyntsgatan 14A, 414 80, Göteborg", + "business_hours": null, + "phone_number": "031-747 80 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Karlsborg vårdcentral, Karlsborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Karlsborg-vardcentral-Karlsborg/", + "location": { + "longitude": 14.516093296371812, + "latitude": 58.530190343899214, + "city": "Karlsborg", + "cp": "54630" + }, + "metadata": { + "address": "Kärleksstigen 4B, 546 30, Karlsborg", + "business_hours": null, + "phone_number": "0505-183 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Kinna vårdcentral, Kinna", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Kinna-vardcentral-Kinna/", + "location": { + "longitude": 12.711605949344667, + "latitude": 57.51134835723841, + "city": "Mark", + "cp": "51123" + }, + "metadata": { + "address": "Kinnaborgsvägen 3, 511 23, Kinna", + "business_hours": null, + "phone_number": "010-435 94 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Kongahälla vårdcentral, Kungälv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Kongahalla-vardcentral-Kungalv/", + "location": { + "longitude": 11.968571835833535, + "latitude": 57.87361132624072, + "city": "Kungälv", + "cp": "44248" + }, + "metadata": { + "address": "Älvebacken 1, 442 48, Kungälv", + "business_hours": null, + "phone_number": "010-473 38 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Krokslätt vårdcentral, Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Krokslatt-vardcentral-Molndal/", + "location": { + "longitude": 12.008058058860863, + "latitude": 57.6737553412858, + "city": "Mölndal", + "cp": "43167" + }, + "metadata": { + "address": "Fredåsgatan 13, 431 67, Mölndal", + "business_hours": null, + "phone_number": "010-473 30 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Kungshamn vårdcentral, Kungshamn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Kungshamn-vardcentral-Kungshamn/", + "location": { + "longitude": 11.256752852814778, + "latitude": 58.36036501444556, + "city": "Sotenäs", + "cp": "45631" + }, + "metadata": { + "address": "Hvitfeldtsgatan 25 B, 456 31, Kungshamn", + "business_hours": null, + "phone_number": "010-441 66 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Kungshöjd vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Kungshojd-vardcentral-Goteborg/", + "location": { + "longitude": 11.96116065276148, + "latitude": 57.70313731917365, + "city": "Göteborg", + "cp": "41118" + }, + "metadata": { + "address": "Kaserntorget 11 A, 411 18, Göteborg", + "business_hours": null, + "phone_number": "031-747 90 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Kungssten vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Kungssten-vardcentral-Goteborg/", + "location": { + "longitude": 11.908218264416664, + "latitude": 57.68229113394415, + "city": "Göteborg", + "cp": "41474" + }, + "metadata": { + "address": "Knipplagatan 2, 414 74, Göteborg", + "business_hours": null, + "phone_number": "031-345 03 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Källstorp vårdcentral, Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Kallstorp-vardcentral-Trollhattan/", + "location": { + "longitude": 12.283109400624665, + "latitude": 58.2937767263321, + "city": "Trollhättan", + "cp": "46159" + }, + "metadata": { + "address": "Strömsviksvägen 16, 461 59, Trollhättan", + "business_hours": null, + "phone_number": "0520-49 45 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Kärra vårdcentral, Hisings Kärra", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Karra-vardcentral-Hisings-Karra/", + "location": { + "longitude": 11.99580086969242, + "latitude": 57.79387070729637, + "city": "Göteborg", + "cp": "42531" + }, + "metadata": { + "address": "Lillekärr Södra 51, 425 31, Hisings Kärra", + "business_hours": null, + "phone_number": "031-747 84 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Landvetter vårdcentral, Landvetter", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Landvetter-vardcentral-Landvetter/", + "location": { + "longitude": 12.211113815508927, + "latitude": 57.68686580612976, + "city": "Härryda", + "cp": "43832" + }, + "metadata": { + "address": "Brattåstorget 13, 438 32, Landvetter", + "business_hours": null, + "phone_number": "010-473 37 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Lerum vårdcentral, Lerum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Lerum-vardcentral-Lerum/", + "location": { + "longitude": 12.265754618589991, + "latitude": 57.76853764400082, + "city": "Lerum", + "cp": "44330" + }, + "metadata": { + "address": "Göteborgsvägen 9, 443 30, Lerum", + "business_hours": null, + "phone_number": "0302-551 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Lerums Gymnasium Häggen", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Lindome vårdcentral, Lindome", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Lindome-vardcentral-Lindome/", + "location": { + "longitude": 12.088026338281288, + "latitude": 57.57627864929657, + "city": "Mölndal", + "cp": "43730" + }, + "metadata": { + "address": "Almåsgången 7, 437 30, Lindome", + "business_hours": null, + "phone_number": "010-473 39 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ljungskile vårdcentral, Ljungskile", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Ljungskile-vardcentral-Ljungskile/", + "location": { + "longitude": 11.918421532444148, + "latitude": 58.22647672026401, + "city": "Uddevalla", + "cp": "45930" + }, + "metadata": { + "address": "Vällebergsvägen 28, 459 30, Ljungskile", + "business_hours": null, + "phone_number": "010-441 53 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Lysekil vårdcentral, Lysekil", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Lysekil-vardcentral-Lysekil/", + "location": { + "longitude": 11.439553084406967, + "latitude": 58.28010803864042, + "city": "Lysekil", + "cp": "45334" + }, + "metadata": { + "address": "Lasarettsgatan 1, 453 34, Lysekil", + "business_hours": null, + "phone_number": "010-441 69 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Lövgärdet vårdcentral, Angered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Lovgardet-vardcentral-Angered/", + "location": { + "longitude": 12.040498501024537, + "latitude": 57.81568945523752, + "city": "Göteborg", + "cp": "42445" + }, + "metadata": { + "address": "Vaniljgatan 28, 424 45, Angered", + "business_hours": null, + "phone_number": "031-747 85 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Majorna vårdcentral, Majorna", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Majorna-vardcentral-Majorna/", + "location": { + "longitude": 11.923368686741194, + "latitude": 57.69734458527387, + "city": "Göteborg", + "cp": "41458" + }, + "metadata": { + "address": "Skärgårdsgatan 4, 414 58, Göteborg", + "business_hours": null, + "phone_number": "031-747 82 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Mariestad vårdcentral, Mariestad", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Mariestad-vardcentral-Mariestad/", + "location": { + "longitude": 13.795835210967395, + "latitude": 58.7051137944602, + "city": "Mariestad", + "cp": "54245" + }, + "metadata": { + "address": "Lockerudsvägen 12, 542 45, Mariestad", + "business_hours": null, + "phone_number": "0501-627 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Masthugget vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Masthugget-vardcentral-Goteborg/", + "location": { + "longitude": 11.943925079612718, + "latitude": 57.698037244169065, + "city": "Göteborg", + "cp": "41327" + }, + "metadata": { + "address": "Fjärde Långgatan 48, 413 27, Göteborg", + "business_hours": null, + "phone_number": "031-747 92 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Mellerud vårdcentral, Mellerud", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Mellerud-vardcentral-Mellerud/", + "location": { + "longitude": 12.453802084584861, + "latitude": 58.70002162115754, + "city": "Mellerud", + "cp": "46430" + }, + "metadata": { + "address": "Norra Kungsgatan 3, 464 30, Mellerud", + "business_hours": null, + "phone_number": "010-441 60 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Munkedal vårdcentral, Munkedal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Munkedal-vardcentral-Munkedal/", + "location": { + "longitude": 11.669117782750162, + "latitude": 58.4676225946603, + "city": "Munkedal", + "cp": "45530" + }, + "metadata": { + "address": "Centrumvägen 34, 455 30, Munkedal", + "business_hours": null, + "phone_number": "010-441 51 40" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Mölnlycke vårdcentral, Mölnlycke", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Molnlycke-vardcentral-Molnlycke/", + "location": { + "longitude": 12.113453691254675, + "latitude": 57.6582312404861, + "city": "Härryda", + "cp": "43530" + }, + "metadata": { + "address": "Ekdalavägen 2, 435 30, Mölnlycke", + "business_hours": null, + "phone_number": "010-473 36 10" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Mösseberg vårdcentral, Falköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Mosseberg-vardcentral-Falkoping/", + "location": { + "longitude": 13.551919293701959, + "latitude": 58.187716349794115, + "city": "Falköping", + "cp": "52137" + }, + "metadata": { + "address": "Danska vägen 62, 521 37, Falköping", + "business_hours": null, + "phone_number": "0515-878 90" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Norrmalm vårdcentral, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Norrmalm-vardcentral-Skovde/", + "location": { + "longitude": 13.83856240939732, + "latitude": 58.400560009292775, + "city": "Skövde", + "cp": "54141" + }, + "metadata": { + "address": "Ekängsvägen 15, 541 41, Skövde", + "business_hours": null, + "phone_number": "0500-44 71 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Nossebro vårdcentral, Nossebro", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Nossebro-vardcentral-Nossebro/", + "location": { + "longitude": 12.726757955720453, + "latitude": 58.19110855091534, + "city": "Essunga", + "cp": "46531" + }, + "metadata": { + "address": "Ängsgatan 2, 465 31, Nossebro", + "business_hours": null, + "phone_number": "0512-79 84 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Oden vårdcentral, Falköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Oden-vardcentral-Falkoping/", + "location": { + "longitude": 13.552551416477767, + "latitude": 58.1640349914607, + "city": "Falköping", + "cp": "52146" + }, + "metadata": { + "address": "Sankt Olofsgatan 8, 521 46, Falköping", + "business_hours": null, + "phone_number": "0515-878 60" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Olskroken vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Olskroken-vardcentral-Goteborg/", + "location": { + "longitude": 11.99728177464694, + "latitude": 57.714548208152515, + "city": "Göteborg", + "cp": "41665" + }, + "metadata": { + "address": "Redbergsvägen 6, 416 65, Göteborg", + "business_hours": null, + "phone_number": "031-345 04 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Opaltorget vårdcentral, Västra Frölunda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Opaltorget-vardcentral-Vastra-Frolunda/", + "location": { + "longitude": 11.899381768423114, + "latitude": 57.64220212443482, + "city": "Göteborg", + "cp": "42164" + }, + "metadata": { + "address": "Zirkongatan 5, 421 64, Västra Frölunda", + "business_hours": null, + "phone_number": "031-346 08 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sandared vårdcentral, Sandared", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sandared-vardcentral-Sandared/", + "location": { + "longitude": 12.798863329868821, + "latitude": 57.70945083373726, + "city": "Borås", + "cp": "51832" + }, + "metadata": { + "address": "Strandvägen 11, 518 32, Sandared", + "business_hours": null, + "phone_number": "010-435 91 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sannegården vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sannegarden-vardcentral-Goteborg/", + "location": { + "longitude": 11.927636665611784, + "latitude": 57.709537078213266, + "city": "Göteborg", + "cp": "41758" + }, + "metadata": { + "address": "Vintergatan 1A, 417 58, Göteborg", + "business_hours": null, + "phone_number": "031-747 84 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Scandinavium", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sisjön vårdcentral, Askim", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sisjon-vardcentral-Askim/", + "location": { + "longitude": 11.952287029726552, + "latitude": 57.639279901335016, + "city": "Göteborg", + "cp": "43632" + }, + "metadata": { + "address": "Datavägen 1, 436 32, Askim", + "business_hours": null, + "phone_number": "031-747 93 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sjöbo vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sjobo-vardcentral-Boras/", + "location": { + "longitude": 12.944342794088731, + "latitude": 57.74975684772514, + "city": "Borås", + "cp": "50642" + }, + "metadata": { + "address": "Sjöbo Torggata 4, 506 42, Borås", + "business_hours": null, + "phone_number": "033-616 18 12" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Skene Lasarett", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Skene vårdcentral, Skene", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Skene-vardcentral-Skene/", + "location": { + "longitude": 12.648362857197943, + "latitude": 57.49188236966391, + "city": "Mark", + "cp": "51181" + }, + "metadata": { + "address": "Varbergsvägen 50, 511 81, Skene", + "business_hours": null, + "phone_number": "0320-77 93 01" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Skogslyckan vårdcentral, Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Skogslyckan-vardcentral-Uddevalla/", + "location": { + "longitude": 11.913302525954462, + "latitude": 58.3603660451416, + "city": "Uddevalla", + "cp": "45160" + }, + "metadata": { + "address": "Sunnanvindsvägen 8, 451 60, Uddevalla", + "business_hours": null, + "phone_number": "010-441 65 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Slottsskogen vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Slottsskogen-vardcentral-Goteborg/", + "location": { + "longitude": 11.947900574341565, + "latitude": 57.69065400397386, + "city": "Göteborg", + "cp": "41311" + }, + "metadata": { + "address": "Vegagatan 55, 413 11, Göteborg", + "business_hours": null, + "phone_number": "031-345 05 80" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Solgärde vårdcentral, Kungälv", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Solgarde-vardcentral-Kungalv/", + "location": { + "longitude": 11.950282789807154, + "latitude": 57.88860469007531, + "city": "Kungälv", + "cp": "44240" + }, + "metadata": { + "address": "Rollsbovägen 58, 442 40, Kungälv", + "business_hours": null, + "phone_number": "010-473 38 30" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sollebrunn vårdcentral, Sollebrunn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sollebrunn-vardcentral-Sollebrunn/", + "location": { + "longitude": 12.530482670618245, + "latitude": 58.1200728689759, + "city": "Alingsås", + "cp": "44170" + }, + "metadata": { + "address": "Centrumgatan 6, 441 70, Sollebrunn", + "business_hours": null, + "phone_number": "0322-837 71" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Stenstorp vårdcentral, Stenstorp", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Stenstorp-vardcentral-Stenstorp/", + "location": { + "longitude": 13.717400041889025, + "latitude": 58.273721072294435, + "city": "Falköping", + "cp": "52160" + }, + "metadata": { + "address": "Storgatan 14 A, 521 60, Stenstorp", + "business_hours": null, + "phone_number": "0500-47 29 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Stenungsund vårdcentral, Stenungsund", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Stenungsund-vardcentral-Stenungsund/", + "location": { + "longitude": 11.817927130264705, + "latitude": 58.06648177430393, + "city": "Stenungsund", + "cp": "44430" + }, + "metadata": { + "address": "Jullen 3, 444 30, Stenungsund", + "business_hours": null, + "phone_number": "010-473 32 20" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Stora Höga vårdcentral, Stora Höga", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Stora-Hoga-vardcentral-Stora-Hoga/", + "location": { + "longitude": 11.83182008976126, + "latitude": 58.016755332684724, + "city": "Stenungsund", + "cp": "44460" + }, + "metadata": { + "address": "Stora vägen 2, 444 60, Stora Höga", + "business_hours": null, + "phone_number": "010-473 35 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Styrsö vårdcentral, Styrsö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Styrso-vardcentral-Styrso/", + "location": { + "longitude": 11.791768928368663, + "latitude": 57.61661672393907, + "city": "Göteborg", + "cp": "43084" + }, + "metadata": { + "address": "Brattenvägen 13, 430 84, Styrsö", + "business_hours": null, + "phone_number": "031-747 80 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Svenljunga vårdcentral, Svenljunga", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Svenljunga-vardcentral-Svenljunga/", + "location": { + "longitude": 13.116587190134467, + "latitude": 57.494098921820274, + "city": "Svenljunga", + "cp": "51254" + }, + "metadata": { + "address": "Klockaregatan 3, 512 54, Svenljunga", + "business_hours": null, + "phone_number": "0325-61 91 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sylte vårdcentral, Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sylte-vardcentral-Trollhattan/", + "location": { + "longitude": 12.27779322659153, + "latitude": 58.25463229610353, + "city": "Trollhättan", + "cp": "46167" + }, + "metadata": { + "address": "Myrtuvevägen 19, 461 67, Trollhättan", + "business_hours": null, + "phone_number": "010-441 50 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Södra Ryd vårdcentral, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sodra-Ryd-vardcentral-Skovde/", + "location": { + "longitude": 13.872582968697841, + "latitude": 58.42562977315242, + "city": "Skövde", + "cp": "54164" + }, + "metadata": { + "address": "Timmervägen 3 A, 541 64, Skövde", + "business_hours": null, + "phone_number": "0500-46 65 62" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Södra torget vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sodra-torget-vardcentral-Boras/", + "location": { + "longitude": 12.942162945391859, + "latitude": 57.718058269930076, + "city": "Borås", + "cp": "50336" + }, + "metadata": { + "address": "Kvarngatan 4, 503 36, Borås", + "business_hours": null, + "phone_number": "010-435 95 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Sörhaga vårdcentral, Alingsås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Sorhaga-vardcentral-Alingsas/", + "location": { + "longitude": 12.519270068574192, + "latitude": 57.92907109760672, + "city": "Alingsås", + "cp": "44133" + }, + "metadata": { + "address": "Södra Ringgatan 34B, 441 33, Alingsås", + "business_hours": null, + "phone_number": "0322-22 65 50" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tanumshede vårdcentral, Tanumshede", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tanumshede-vardcentral-Tanumshede/", + "location": { + "longitude": 11.321784419297439, + "latitude": 58.72406096672031, + "city": "Tanum", + "cp": "45730" + }, + "metadata": { + "address": "Ringvägen 1 A, 457 30, Tanumshede", + "business_hours": null, + "phone_number": "010-441 51 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tibro vårdcentral", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tibro vårdcentral, Tibro", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tibro-vardcentral-Tibro/", + "location": { + "longitude": 14.164658893358924, + "latitude": 58.42518700110039, + "city": "Tibro", + "cp": "54330" + }, + "metadata": { + "address": "Centrumgatan 17, 543 30, Tibro", + "business_hours": null, + "phone_number": "0504-403 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tidan vårdcentral, Tidan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tidan-vardcentral-Tidan/", + "location": { + "longitude": 14.006912271545554, + "latitude": 58.574153031898994, + "city": "Skövde", + "cp": "54931" + }, + "metadata": { + "address": "Tidanvägen 5A, 549 31, Tidan", + "business_hours": null, + "phone_number": "0500-49 51 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tjörn vårdcentral, Kållekärr", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tjorn-vardcentral-Kallekarr/", + "location": { + "longitude": 11.657691156758297, + "latitude": 58.02590426857552, + "city": "Tjörn", + "cp": "47194" + }, + "metadata": { + "address": "Syster Ebbas väg 1, 471 94, Kållekärr", + "business_hours": null, + "phone_number": "010-473 46 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Torpavallen vårdcentral, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Torpavallen-vardcentral-Goteborg/", + "location": { + "longitude": 12.033765303431863, + "latitude": 57.72398197393295, + "city": "Göteborg", + "cp": "41673" + }, + "metadata": { + "address": "Torpavallsgatan 9, 416 73, Göteborg", + "business_hours": null, + "phone_number": "031-747 81 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Torslanda vårdcentral, Torslanda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Torslanda-vardcentral-Torslanda/", + "location": { + "longitude": 11.774113687803496, + "latitude": 57.71908827434783, + "city": "Göteborg", + "cp": "42334" + }, + "metadata": { + "address": "Nordhagsvägen 2 A, 423 34, Torslanda", + "business_hours": null, + "phone_number": "031-747 86 40" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Trandared vårdcentral, Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Trandared-vardcentral-Boras/", + "location": { + "longitude": 12.95257608143609, + "latitude": 57.70819595574002, + "city": "Borås", + "cp": "50450" + }, + "metadata": { + "address": "Kindsgatan 1, 504 50, Borås", + "business_hours": null, + "phone_number": "010-435 91 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tranemo vårdcentral, Tranemo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tranemo-vardcentral-Tranemo/", + "location": { + "longitude": 13.346591812509288, + "latitude": 57.48063225486268, + "city": "Tranemo", + "cp": "51434" + }, + "metadata": { + "address": "Storgatan 42, 514 34, Tranemo", + "business_hours": null, + "phone_number": "0325-472 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Tuve vårdcentral, Göteborg, Tuve", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Tuve-vardcentral-Goteborg-Tuve/", + "location": { + "longitude": 11.926842338474875, + "latitude": 57.755196991597344, + "city": "Göteborg", + "cp": "41743" + }, + "metadata": { + "address": "Tuve torg 4, 417 43, Göteborg", + "business_hours": null, + "phone_number": "031-747 85 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Töreboda vårdcentral, Töreboda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Toreboda-vardcentral-Toreboda/", + "location": { + "longitude": 14.121938796810461, + "latitude": 58.706728897807, + "city": "Töreboda", + "cp": "54531" + }, + "metadata": { + "address": "Börstorpsgatan 9, 545 31, Töreboda", + "business_hours": null, + "phone_number": "0506-197 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ulricehamn", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ulricehamn vårdcentral, Ulricehamn", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Ulricehamn-vardcentral-Ulricehamn/", + "location": { + "longitude": 13.416478615626206, + "latitude": 57.793858457925545, + "city": "Ulricehamn", + "cp": "52334" + }, + "metadata": { + "address": "Nygatan 7, 523 34, Ulricehamn", + "business_hours": null, + "phone_number": "0321-291 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Vara vårdcentral, Vara", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Vara-vardcentral-Vara/", + "location": { + "longitude": 12.965439010152812, + "latitude": 58.264280183788806, + "city": "Vara", + "cp": "53432" + }, + "metadata": { + "address": "Allégatan 46, 534 32, Vara", + "business_hours": null, + "phone_number": "0512-78 60 32" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Vargön vårdcentral, Vargön", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Vargon-vardcentral-Vargon/", + "location": { + "longitude": 12.38919699791729, + "latitude": 58.35641845779095, + "city": "Vänersborg", + "cp": "46830" + }, + "metadata": { + "address": "Nordkroksvägen 3A, 468 30, Vargön", + "business_hours": null, + "phone_number": "010-441 52 40" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Vänerparken vårdcentral, Vänersborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Vanerparken-vardcentral-Vanersborg/", + "location": { + "longitude": 12.320768911766642, + "latitude": 58.374752961014416, + "city": "Vänersborg", + "cp": "46235" + }, + "metadata": { + "address": "Vänerparken 21, 462 35, Vänersborg", + "business_hours": null, + "phone_number": "010-441 62 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Vårgårda vårdcentral, Vårgårda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Vargarda-vardcentral-Vargarda/", + "location": { + "longitude": 12.810322726934977, + "latitude": 58.032407540504785, + "city": "Vårgårda", + "cp": "44731" + }, + "metadata": { + "address": "Centrumgatan 2, 447 31, Vårgårda", + "business_hours": null, + "phone_number": "010-435 85 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Älvängen vårdcentral, Älvängen", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Alvangen-vardcentral-Alvangen/", + "location": { + "longitude": 12.126418552009834, + "latitude": 57.96100312404404, + "city": "Ale", + "cp": "44637" + }, + "metadata": { + "address": "Svenstorpsvägen 1, 446 37, Älvängen", + "business_hours": null, + "phone_number": "010-473 35 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ängabo vårdcentral, Alingsås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Angabo-vardcentral-Alingsas/", + "location": { + "longitude": 12.568003598005491, + "latitude": 57.91812209761183, + "city": "Alingsås", + "cp": "44150" + }, + "metadata": { + "address": "Sundsbergsvägen 7, 441 50, Alingsås", + "business_hours": null, + "phone_number": "010-435 92 10" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ågårdsskogen", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Ågårdsskogen vårdcentral, Lidköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Agardsskogen-vardcentral-Lidkoping/", + "location": { + "longitude": 13.136437416624878, + "latitude": 58.49300116191721, + "city": "Lidköping", + "cp": "53151" + }, + "metadata": { + "address": "Tallskogsvägen 2, 531 51, Lidköping", + "business_hours": null, + "phone_number": "0510-854 12" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Närhälsan Öckerö vårdcentral, Öckerö", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Narhalsan-Ockero-vardcentral-Ockero/", + "location": { + "longitude": 11.65499605369803, + "latitude": 57.70855441841233, + "city": "Öckerö", + "cp": "47531" + }, + "metadata": { + "address": "Sockenvägen 2, 475 31, Öckerö", + "business_hours": null, + "phone_number": "010-473 39 70" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Bergsjön Vårdcentral och BVC", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Bergsjon-Vardcentral-och-BVC/", + "location": { + "longitude": 12.072403443004314, + "latitude": 57.75602583095393, + "city": "Göteborg", + "cp": "41566" + }, + "metadata": { + "address": "Rymdtorget 8 D, 415 66, Göteborg", + "business_hours": null, + "phone_number": "031-792 94 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Friskväderstorget Vårdcentral och BVC, Biskopsgården", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Friskvaderstorget-Vardcentral-och-BVC-Biskopsgarden/", + "location": { + "longitude": 11.89241120925648, + "latitude": 57.72488130497697, + "city": "Göteborg", + "cp": "41838" + }, + "metadata": { + "address": "Friskväderstorget 8, 418 38, Göteborg", + "business_hours": null, + "phone_number": "031-792 87 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Hovås Askim Familjeläkare och BVC, Askim", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Hovas-Askim-Familjelakare-och-BVC-Askim/", + "location": { + "longitude": 11.936867427103937, + "latitude": 57.63346971090494, + "city": "Göteborg", + "cp": "43643" + }, + "metadata": { + "address": "Askims Torg 5, 436 43, Askim", + "business_hours": null, + "phone_number": "031-727 90 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Kortedala Vårdcentral och BVC, Kortedala", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Kortedala-Vardcentral-och-BVC-Kortedala/", + "location": { + "longitude": 12.041043718488815, + "latitude": 57.7620436930486, + "city": "Göteborg", + "cp": "41546" + }, + "metadata": { + "address": "Årstidsgatan 48, 415 46, Göteborg", + "business_hours": null, + "phone_number": "031-750 31 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Kållered Familjeläkare och BVC, Kållered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Kallered-Familjelakare-och-BVC-Kallered/", + "location": { + "longitude": 12.048777763042008, + "latitude": 57.61082212425263, + "city": "Mölndal", + "cp": "42832" + }, + "metadata": { + "address": "Gamla Riksvägen 44, 428 32, Kållered", + "business_hours": null, + "phone_number": "031-793 18 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Masthugget Familjeläkare och BVC, Masthugget", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Masthugget-Familjelakare-och-BVC-Masthugget/", + "location": { + "longitude": 11.940533805721076, + "latitude": 57.6986705692031, + "city": "Göteborg", + "cp": "41327" + }, + "metadata": { + "address": "Andra Långgatan 48, 413 27, Göteborg", + "business_hours": null, + "phone_number": "031-793 85 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Nötkärnan Sävelången Familjeläkare och BVC, Alingsås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Notkarnan-Savelangen-Familjelakare-och-BVC-Alingsas/", + "location": { + "longitude": 12.511888971223486, + "latitude": 57.92004753171123, + "city": "Alingsås", + "cp": "44145" + }, + "metadata": { + "address": "Rubingatan 1 D, 441 45, Alingsås", + "business_hours": null, + "phone_number": "0322-22 98 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Frölunda Torg, Västra Frölunda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Frolunda-Torg-Vastra-Frolunda/", + "location": { + "longitude": 11.911607172733204, + "latitude": 57.65261010965913, + "city": "Göteborg", + "cp": "42142" + }, + "metadata": { + "address": "Lilla Marconigatan 31, 421 42, Västra Frölunda", + "business_hours": null, + "phone_number": "031-380 48 40" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Grimmered, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Grimmered-Goteborg/", + "location": { + "longitude": 11.904107670285722, + "latitude": 57.65390658419838, + "city": "Göteborg", + "cp": "42150" + }, + "metadata": { + "address": "Lergöksgatan 2B, 421 50, Västra Frölunda", + "business_hours": null, + "phone_number": "031-352 06 10" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Järnhälsan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Jarnhalsan/", + "location": { + "longitude": 11.954632827566257, + "latitude": 57.70089843719097, + "city": "Göteborg", + "cp": "41301" + }, + "metadata": { + "address": "Järntorgsgatan 8, 413 01, Göteborg", + "business_hours": null, + "phone_number": "031-743 77 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Kviberg, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Kviberg-Goteborg/", + "location": { + "longitude": 12.031697077006307, + "latitude": 57.73302429036094, + "city": "Göteborg", + "cp": "41526" + }, + "metadata": { + "address": "Anna Branzells Gata 30, 415 26, Göteborg", + "business_hours": null, + "phone_number": "031-352 06 65" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Kållered", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Kallered/", + "location": { + "longitude": 12.016515174347866, + "latitude": 57.64803591580662, + "city": "Mölndal", + "cp": "43161" + }, + "metadata": { + "address": "Katrinebergsgatan 1, 431 61, Mölndal", + "business_hours": null, + "phone_number": "031-320 35 35" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Landala, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Landala-Goteborg/", + "location": { + "longitude": 11.970435509718842, + "latitude": 57.69355079875381, + "city": "Göteborg", + "cp": "41131" + }, + "metadata": { + "address": "Kapellplatsen 8, 411 31, Göteborg", + "business_hours": null, + "phone_number": "031-352 06 20" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Majorna, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Majorna-Goteborg/", + "location": { + "longitude": 11.916144165646461, + "latitude": 57.69099282514091, + "city": "Göteborg", + "cp": "41451" + }, + "metadata": { + "address": "Jaegerdorffsplatsen 3, 414 51, Göteborg", + "business_hours": null, + "phone_number": "031-380 48 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Pedagogen Park, Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Pedagogen-Park-Molndal/", + "location": { + "longitude": 11.986943156971165, + "latitude": 57.652043371063755, + "city": "Mölndal", + "cp": "43144" + }, + "metadata": { + "address": "Bifrostgatan 42, 431 44, Mölndal", + "business_hours": null, + "phone_number": "031-352 06 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Vårdcentral Åby, Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Vardcentral-Aby-Molndal/", + "location": { + "longitude": 12.016630155811027, + "latitude": 57.64821911191313, + "city": "Mölndal", + "cp": "43161" + }, + "metadata": { + "address": "Katrinebergsgatan 1, 431 61, Mölndal", + "business_hours": null, + "phone_number": "031-380 48 41" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Omtanken Åby Arena, Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Omtanken-Aby-Arena-Goteborg/", + "location": { + "longitude": 12.003148669475381, + "latitude": 57.64953950420505, + "city": "Mölndal", + "cp": "42123" + }, + "metadata": { + "address": "Åby Arenaväg 10, 421 23, Västra Frölunda", + "business_hours": null, + "phone_number": "031-352 06 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Pe3 företagshälsa", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Pe3-foretagshalsa/", + "location": { + "longitude": 11.995889658579285, + "latitude": 57.6888293454362, + "city": "Mölndal", + "cp": "41263" + }, + "metadata": { + "address": "Mölndalsvägen 30A, 412 63, Göteborg", + "business_hours": null, + "phone_number": "0770176110" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Plus7 Vårdcentralen, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Plus7-Vardcentralen-Centrum/", + "location": { + "longitude": 11.957927835254418, + "latitude": 57.70543862853871, + "city": "Göteborg", + "cp": "41121" + }, + "metadata": { + "address": "Lilla Badhusgatan 2, 411 21, Göteborg", + "business_hours": null, + "phone_number": "031-777 77 77" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Previa Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Previa-centrum/", + "location": { + "longitude": 11.972134374447458, + "latitude": 57.70922257897696, + "city": "Göteborg", + "cp": "41103" + }, + "metadata": { + "address": "Nils ericsonsplatsen 4, 411 03, Göteborg, First Hotell", + "business_hours": null, + "phone_number": "070-757 91 72" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Primapraktiken Vaccination Torp Köpcentrum Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Primapraktiken-Vaccination-Torp-Kopcentrum-Uddevalla/", + "location": { + "longitude": 11.812469005033305, + "latitude": 58.354361852181434, + "city": "Uddevalla", + "cp": "45176" + }, + "metadata": { + "address": "Torp, 451 76, Uddevalla, Torp köpcentrum parkering", + "business_hours": null + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Primapraktiken, Trollhättan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Primapraktiken-Trollhattan/", + "location": { + "longitude": 12.276335312113112, + "latitude": 58.27013718382886, + "city": "Trollhättan", + "cp": "46153" + }, + "metadata": { + "address": "Nohabgatan 18E, 461 53, Trollhättan", + "business_hours": null, + "phone_number": "0520-49 48 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Radiologi Carlanderska, Göteborg", + "url": "https://patient.nu/portal/public/calendar/9926e9dd-a824-11eb-a8eb-fa163e329242", + "location": { + "longitude": 11.989253454144604, + "latitude": 57.69256560387536, + "city": "Göteborg", + "cp": "41255" + }, + "metadata": { + "address": "Carlandersparken 1, 412 55, Göteborg", + "business_hours": null, + "phone_number": "031-81 80 20" + }, + "prochain_rdv": null, + "plateforme": "Patient", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "9926e9dd-a824-11eb-a8eb-fa163e329242", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Rävlanda Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Ravlanda-Vardcentral/", + "location": { + "longitude": 12.496931853385187, + "latitude": 57.653517185751305, + "city": "Härryda", + "cp": "43851" + }, + "metadata": { + "address": "Rävlanda Stationsväg 3, 438 51, Rävlanda", + "business_hours": null, + "phone_number": "0301-452 55" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Skagerns Vård och Hälsoenhet, Gullspång", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Skagerns-Vard-och-Halsoenhet-Gullspang/", + "location": { + "longitude": 14.087031725322504, + "latitude": 58.98041758856205, + "city": "Gullspång", + "cp": "54731" + }, + "metadata": { + "address": "Hemgatan 10, 547 31, Gullspång", + "business_hours": null, + "phone_number": "0551-201 17" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Skepplanda Läkarhus, Skepplanda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Skepplanda-Lakarhus-Skepplanda/", + "location": { + "longitude": 12.211637644841943, + "latitude": 57.9825484209134, + "city": "Ale", + "cp": "44640" + }, + "metadata": { + "address": "Albotorget 5, 446 40, Skepplanda", + "business_hours": null, + "phone_number": "0303-25 01 40" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Skövde, Kungsgatan 22", + "url": "https://www.vaccina.se/covidvaccin/vastra-gotaland/tidsbokning/#/service", + "location": { + "longitude": 13.8454331, + "latitude": 58.3881931, + "city": "Skövde", + "cp": "54131" + }, + "metadata": { + "address": "Kungsgatan 22, 54131 Skövde", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30633, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Sotenäs Vårdcentral i Hunnebostrand, Hunnebostrand", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Sotenas-Vardcentral-i-Hunnebostrand-Hunnebostrand/", + "location": { + "longitude": 11.301381033627182, + "latitude": 58.43903873777898, + "city": "Sotenäs", + "cp": "45661" + }, + "metadata": { + "address": "Skolgatan 19, 456 61, Hunnebostrand", + "business_hours": null, + "phone_number": "0523-199 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Svea vaccin Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-vaccin-Boras/", + "location": { + "longitude": 12.942881604287955, + "latitude": 57.7227729720489, + "city": "Borås", + "cp": "50333" + }, + "metadata": { + "address": "Kungsgatan 34, 503 33, Borås", + "business_hours": null, + "phone_number": "076-321 80 86" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Svea vaccin Hisingen", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-vaccin-Hisingen/", + "location": { + "longitude": 11.944880452573315, + "latitude": 57.72404058163071, + "city": "Göteborg", + "cp": "41724" + }, + "metadata": { + "address": "Gustaf Dahlensgatan 30, 417 24, Göteborg", + "business_hours": null, + "phone_number": "070-726 73 10" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Svea vaccin Masthugget", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-vaccin-Masthugget/", + "location": { + "longitude": 11.944679578553762, + "latitude": 57.69883322847448, + "city": "Göteborg", + "cp": "41327" + }, + "metadata": { + "address": "Andra Långgatan 35, 413 27, Göteborg", + "business_hours": null, + "phone_number": "076-315 45 05" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Svea vaccin Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-vaccin-Molndal/", + "location": { + "longitude": 12.015480841640054, + "latitude": 57.656497900613736, + "city": "Mölndal", + "cp": "43130" + }, + "metadata": { + "address": "Bergmansgatan 4A, 431 30, Mölndal", + "business_hours": null, + "phone_number": "076-327 66 74" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Svea vaccin Vasagatan", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Svea-vaccin-Vasagatan/", + "location": { + "longitude": 11.969452093834567, + "latitude": 57.698401163235495, + "city": "Göteborg", + "cp": "41124" + }, + "metadata": { + "address": "Vasagatan 23, 411 24, Göteborg", + "business_hours": null, + "phone_number": "073-533 64 37" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Sätila Vårdcentral", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Satila-Vardcentral/", + "location": { + "longitude": 12.432784951816199, + "latitude": 57.54302310798099, + "city": "Mark", + "cp": "51169" + }, + "metadata": { + "address": "Björlandavägen 3, 511 69, Sätila", + "business_hours": null, + "phone_number": "0301-51 51 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Sävedalens Vårdcentral och BVC, Partille", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Savedalens-Vardcentral-och-BVC-Partille/", + "location": { + "longitude": 12.072646095671566, + "latitude": 57.73250503625871, + "city": "Partille", + "cp": "43363" + }, + "metadata": { + "address": "Göteborgsvägen 74, 433 63, Sävedalen", + "business_hours": null, + "phone_number": "031-383 04 60" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "TEAM hälso och friskvård Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Team-halso-och-friskvard-Molndal/", + "location": { + "longitude": 12.010209842017503, + "latitude": 57.670665444771, + "city": "Mölndal", + "cp": "43137" + }, + "metadata": { + "address": "Göteborgsvägen 97, 431 37, mölndal", + "business_hours": null, + "phone_number": "031-723 28 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Tranehälsan, Tranemo", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Tranehalsan-Tranemo/", + "location": { + "longitude": 13.355505250828575, + "latitude": 57.48673436527698, + "city": "Tranemo", + "cp": "51433" + }, + "metadata": { + "address": "Storgatan 4, 514 33, Tranemo", + "business_hours": null, + "phone_number": "0325-134 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Uddevalla, Bastiongatan 40", + "url": "https://www.vaccina.se/covidvaccin/vastra-gotaland/tidsbokning/#/service", + "location": { + "longitude": 11.9080168, + "latitude": 58.3525243, + "city": "Uddevalla", + "cp": "45150" + }, + "metadata": { + "address": "Bastiongatan 40, 451 50 Uddevalla", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "Vaccina", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": 30645, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Ugglans Vårdcentral Fredriksdal, Krokslätt", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Ugglans-Vardcentral-Fredriksdal-Krokslatt/", + "location": { + "longitude": 11.999946246895176, + "latitude": 57.683118767528825, + "city": "Göteborg", + "cp": "41263" + }, + "metadata": { + "address": "Mölndalsvägen 77, 412 63, Göteborg", + "business_hours": null, + "phone_number": "031-722 11 90" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Ugglans vårdcentral Landvetter", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Ugglans-vardcentral-Landvetter/", + "location": { + "longitude": 12.19823431631337, + "latitude": 57.68764015002581, + "city": "Härryda", + "cp": "43835" + }, + "metadata": { + "address": "Milstensvägen 2, 438 35, Landvetter", + "business_hours": null, + "phone_number": "031-91 90 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Unicare Vårdcentral Mariestad, Mariestad", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Unicare-Vardcentral-Mariestad-Mariestad/", + "location": { + "longitude": 13.82997770410927, + "latitude": 58.70524709758516, + "city": "Mariestad", + "cp": "54237" + }, + "metadata": { + "address": "Drottninggatan 1, 542 37, Mariestad", + "business_hours": null, + "phone_number": "0501-121 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "VaccinDirekt Mölndal", + "url": "https://www.1177.se/hitta-vard/kontaktkort/VaccinDirekt-Molndal/", + "location": { + "longitude": 12.012533344723465, + "latitude": 57.65454005693733, + "city": "Mölndal", + "cp": "43131" + }, + "metadata": { + "address": "Mölndal Galleria Övre plan, 431 31, Mölndal", + "business_hours": null, + "phone_number": "070-341 62 52" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Apoteksgruppen Stenungsund", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Apoteksgruppen-Stenungsund/", + "location": { + "longitude": 11.822175836886462, + "latitude": 58.074919745538224, + "city": "Stenungsund", + "cp": "44431" + }, + "metadata": { + "address": "Gärdesvägen 3, 444 31, Stenungsund", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Borås", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Boras/", + "location": { + "longitude": 12.927897197613724, + "latitude": 57.71039490544679, + "city": "Borås", + "cp": "50432" + }, + "metadata": { + "address": "Islandsgatan 6, 504 32, Borås", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Falköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Falkoping/", + "location": { + "longitude": 13.57863702014681, + "latitude": 58.166496045938516, + "city": "Falköping", + "cp": "52141" + }, + "metadata": { + "address": "Sätunagatan 3, 521 41, Falköping", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Göteborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Goteborg/", + "location": { + "longitude": 11.993638177442609, + "latitude": 57.703374943856694, + "city": "Göteborg", + "cp": "41250" + }, + "metadata": { + "address": "Vädursgatan 5, 412 50, Göteborg", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Lidköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Lidkoping/", + "location": { + "longitude": 13.14545941122452, + "latitude": 58.50844024573834, + "city": "Lidköping", + "cp": "53154" + }, + "metadata": { + "address": "Framnäsvägen 1, 531 54, Lidköping", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Partille", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Partille/", + "location": { + "longitude": 12.117030561766294, + "latitude": 57.73996318768428, + "city": "Partille", + "cp": "43333" + }, + "metadata": { + "address": "Gamla Kronvägen 2, 433 33, Partille", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Skovde/", + "location": { + "longitude": 13.84559737031623, + "latitude": 58.38816741409821, + "city": "Skövde", + "cp": "54131" + }, + "metadata": { + "address": "Kungsgatan 22, 541 31, Skövde", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccina Uddevalla", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccina-Uddevalla/", + "location": { + "longitude": 11.91674916547866, + "latitude": 58.3525172459755, + "city": "Uddevalla", + "cp": "45150" + }, + "metadata": { + "address": "Bastiongatan 40, 451 50, Uddevalla", + "business_hours": null, + "phone_number": "010-750 09 45" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccinationsmottagning Covid 19 Lidköping, Lidköping", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccinationsmottagning-Covid-19-Lidkoping-Lidkoping/", + "location": { + "longitude": 13.15188985868376, + "latitude": 58.49806441659296, + "city": "Lidköping", + "cp": "53151" + }, + "metadata": { + "address": "Mellbygatan 11, 531 51, Lidköping", + "business_hours": null, + "phone_number": "0500-43 10 00" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vaccinationsmottagning Covid 19 Skövde, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vaccinationsmottagning-Covid-19-Skovde-Skovde/", + "location": { + "longitude": 13.848292491093101, + "latitude": 58.42622183070814, + "city": "Skövde", + "cp": "54142" + }, + "metadata": { + "address": "Lövängsvägen 1, 541 42, Skövde", + "business_hours": null, + "phone_number": "0500-49 33 93" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vara Konserthus", + "url": null, + "location": { + "longitude": "", + "latitude": "", + "city": "", + "cp": "00000" + }, + "metadata": { + "address": "", + "business_hours": null, + "phone_number": "" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Viskaforskliniken, Viskafors", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Viskaforskliniken-Viskafors/", + "location": { + "longitude": 12.865757523004532, + "latitude": 57.6307247665104, + "city": "Borås", + "cp": "51534" + }, + "metadata": { + "address": "Hagkällevägen 2, 515 34, Viskafors", + "business_hours": null, + "phone_number": "033-724 55 55" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Bohuslinden, Strömstad", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Bohuslinden-Stromstad/", + "location": { + "longitude": 11.17081049376294, + "latitude": 58.931271833557275, + "city": "Strömstad", + "cp": "45231" + }, + "metadata": { + "address": "Uddevallavägen 3 B, 452 31, Strömstad", + "business_hours": null, + "phone_number": "0526-187 87" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Carlanderska, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Carlanderska-Centrum/", + "location": { + "longitude": 11.989253454144604, + "latitude": 57.69256560387536, + "city": "Göteborg", + "cp": "41255" + }, + "metadata": { + "address": "Carlandersparken 1, 412 55, Göteborg", + "business_hours": null, + "phone_number": "031-81 80 80" + }, + "prochain_rdv": null, + "plateforme": "1177", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Centrum, Skövde", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Centrum-Skovde/", + "location": { + "longitude": 13.850510689684441, + "latitude": 58.38899687988682, + "city": "Skövde", + "cp": "54130" + }, + "metadata": { + "address": "Stationsgatan 10, 541 30, Skövde", + "business_hours": null, + "phone_number": "0500-38 18 50" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Kusten Kärna Filial, Kärna", + "url": "https://bokning.mittvaccin.se/klinik/783", + "location": { + "longitude": 11.79607707517296, + "latitude": 57.845999552475924, + "city": "Kungälv", + "cp": "44270" + }, + "metadata": { + "address": "Kaprifolvägen 1c, 442 70, Kärna", + "business_hours": null, + "phone_number": "0303-37 97 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "783", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Kusten Marstrand Filial, Marstrand", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Kusten-Marstrand-Filial-Marstrand/", + "location": { + "longitude": 11.587631291710355, + "latitude": 57.88760114429391, + "city": "Kungälv", + "cp": "44266" + }, + "metadata": { + "address": "Lilla Varvsgatan 32, 442 66, Marstrand", + "business_hours": null, + "phone_number": "0303-601 42" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Kusten, Ytterby", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Kusten-Ytterby/", + "location": { + "longitude": 11.917929654408688, + "latitude": 57.862244866360214, + "city": "Kungälv", + "cp": "44250" + }, + "metadata": { + "address": "Stationsgatan 1, 442 50, Ytterby", + "business_hours": null, + "phone_number": "0303-37 97 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Läkarhuset, Centrum", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Lakarhuset-Centrum/", + "location": { + "longitude": 11.978588613117877, + "latitude": 57.69994536059517, + "city": "Göteborg", + "cp": "41135" + }, + "metadata": { + "address": "Södra vägen 27, 411 35, Göteborg", + "business_hours": null, + "phone_number": "031-81 83 30" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Nordstan, Vänersborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Nordstan-Vanersborg/", + "location": { + "longitude": 12.323134530822369, + "latitude": 58.38302102184166, + "city": "Vänersborg", + "cp": "46230" + }, + "metadata": { + "address": "Residensgatan 23, 462 30, Vänersborg", + "business_hours": null, + "phone_number": "0521-26 20 80" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Vårdcentralen Vilan, Skara", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Vardcentralen-Vilan-Skara/", + "location": { + "longitude": 13.454434383550469, + "latitude": 58.38599925074448, + "city": "Skara", + "cp": "53237" + }, + "metadata": { + "address": "Axvallagatan 3, 532 37, Skara", + "business_hours": null, + "phone_number": "0511-70 01 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Wästerläkarna Redegatan, Västra Frölunda", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Wasterlakarna-Redegatan-Vastra-Frolunda/", + "location": { + "longitude": 11.881911689442715, + "latitude": 57.67310921842905, + "city": "Göteborg", + "cp": "42677" + }, + "metadata": { + "address": "Redegatan 1B, 426 77, Västra Frölunda", + "business_hours": null, + "phone_number": "031-29 90 95" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Wästerläkarna, Älvsborg", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Wasterlakarna-Alvsborg/", + "location": { + "longitude": 11.87907321355784, + "latitude": 57.670971780670314, + "city": "Göteborg", + "cp": "42677" + }, + "metadata": { + "address": "Hängpilsgatan 3, 426 77, Västra Frölunda", + "business_hours": null, + "phone_number": "031-29 90 70" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "filial Hova Skagerns Vård och Hälsoenhet, Gullspång", + "url": "https://www.1177.se/hitta-vard/kontaktkort/filial-Hova-Skagerns-Vard-och-Halsoenhet-Gullspang/", + "location": { + "longitude": 14.215830348897311, + "latitude": 58.85750194706991, + "city": "Gullspång", + "cp": "54831" + }, + "metadata": { + "address": "Mariestadsvägen 6, 548 31, Hova", + "business_hours": null, + "phone_number": "0551-201 17" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "iDoc vaccination Lerum/Floda lada", + "url": "https://bokning.mittvaccin.se/klinik/2121", + "location": { + "longitude": 12.365361223720834, + "latitude": 57.80611268181714, + "city": "Lerum", + "cp": "44830" + }, + "metadata": { + "address": "Floda allé 4, 448 30, Floda", + "business_hours": null, + "phone_number": "0790980559" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2121", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "iDoc vaccination Partille Arena", + "url": "https://bokning.mittvaccin.se/klinik/2071", + "location": { + "longitude": 12.116960802546794, + "latitude": 57.7399881139274, + "city": "Partille", + "cp": "43333" + }, + "metadata": { + "address": "Arenatorget 2, 433 33, Partille, Partille Arena", + "business_hours": null, + "phone_number": "0790980559" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "2071", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Älvpraktiken", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Alvpraktiken/", + "location": { + "longitude": 11.956458997761287, + "latitude": 57.86889420047333, + "city": "Kungälv", + "cp": "44237" + }, + "metadata": { + "address": "Nordmannatorget 1, 442 37, Kungälv", + "business_hours": null, + "phone_number": "0303-40 47 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "14", + "nom": "Älvängens Läkarhus", + "url": "https://www.1177.se/hitta-vard/kontaktkort/Alvangens-Lakarhus/", + "location": { + "longitude": 12.132966287387127, + "latitude": 57.96310682084351, + "city": "Ale", + "cp": "44637" + }, + "metadata": { + "address": "Svenstorpsvägen 15, 446 37, Älvängen", + "business_hours": null, + "phone_number": "0303-44 11 00" + }, + "prochain_rdv": null, + "plateforme": null, + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": null, + "vaccine_type": null, + "appointment_by_phone_only": true, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "18": { + "version": 1, + "last_updated": "2021-06-10 09:40:21.199091+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "18", + "nom": "Vaccinationsmottagningen Covid 19 Lindesberg", + "url": "https://bokning.mittvaccin.se/klinik/1348", + "location": { + "longitude": 15.22503917660434, + "latitude": 59.59984521812295, + "city": "Lindesberg", + "cp": "00000" + }, + "metadata": { + "address": "Banvägen 28, Lindesberg", + "business_hours": null, + "phone_number": "019-602 80 00" + }, + "prochain_rdv": "2021-06-10 10:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 1, + "internal_id": "1348", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "18", + "nom": "Vaccinationsmottagningen Covid 19 Hallsberg", + "url": "https://bokning.mittvaccin.se/klinik/1350", + "location": { + "longitude": 15.098423102618073, + "latitude": 59.06695698446932, + "city": "Hallsberg", + "cp": "00000" + }, + "metadata": { + "address": "Esplanaden 1, Hallsberg", + "business_hours": null, + "phone_number": "019-602 80 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1350", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "18", + "nom": "Vaccinationsmottagningen Covid 19 Karlskoga", + "url": "https://bokning.mittvaccin.se/klinik/1349", + "location": { + "longitude": 14.492074346216494, + "latitude": 59.313897585665536, + "city": "Karlskoga", + "cp": "00000" + }, + "metadata": { + "address": "Skrantahöjdsvägen 42, hus 10, Karlskoga", + "business_hours": null, + "phone_number": "019-602 80 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1349", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "18", + "nom": "Vaccinationsmottagningen Covid 19 Örebro Boglundsängen", + "url": "https://bokning.mittvaccin.se/klinik/1351", + "location": { + "longitude": 15.198212746374612, + "latitude": 59.296286646575545, + "city": "Örebro", + "cp": "00000" + }, + "metadata": { + "address": "Prologgatan 3, Örebro", + "business_hours": null, + "phone_number": "019-602 80 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1351", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "18", + "nom": "Vaccinationsmottagningen Covid 19 Örebro Conventum", + "url": "https://bokning.mittvaccin.se/klinik/1352", + "location": { + "longitude": 15.205639056496208, + "latitude": 59.269246933832775, + "city": "Örebro", + "cp": "00000" + }, + "metadata": { + "address": "Conventum Arena, Fabriksgatan 26-28, Örebro", + "business_hours": null, + "phone_number": "019-602 80 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "1352", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + }, + "05": { + "version": 1, + "last_updated": "2021-06-10 09:42:29.468889+02:00", + "last_scrap": [], + "centres_disponibles": [ + { + "departement": "05", + "nom": "Barnavårdscentralen, Vårdcentralen Mirum", + "url": "https://bokning.mittvaccin.se/klinik/773", + "location": { + "longitude": 16.2095815992703, + "latitude": 58.57340265232764, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Lidaleden 12, Norrköping", + "business_hours": null, + "phone_number": "011-496 11 08" + }, + "prochain_rdv": "2021-06-22 10:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 588, + "internal_id": "773", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Barnhälsovården VVC, Helsa Vårdcentral Kneippen", + "url": "https://bokning.mittvaccin.se/klinik/770", + "location": { + "longitude": 16.17089235009939, + "latitude": 58.57157006021294, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Helsa VC Vilbergen, Urbergsgatan 90, Norrköping", + "business_hours": null, + "phone_number": "011-21 56 09" + }, + "prochain_rdv": "2021-06-22 13:15:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 30, + "internal_id": "770", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Capio Vårdcentral Berga, Linköping", + "url": "https://bokning.mittvaccin.se/klinik/766", + "location": { + "longitude": 15.642545568788469, + "latitude": 58.39232023756628, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Söderleden 35-37, Linköping", + "business_hours": null, + "phone_number": "010-105 96 10" + }, + "prochain_rdv": "2021-06-17 15:42:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 76, + "internal_id": "766", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Geria Vårdcentral i Söderköping", + "url": "https://bokning.mittvaccin.se/klinik/767", + "location": { + "longitude": 16.32833604606261, + "latitude": 58.48053939836682, + "city": "Söderköping", + "cp": "00000" + }, + "metadata": { + "address": "Ågatan 53, Söderköping", + "business_hours": null, + "phone_number": "010-105 92 25" + }, + "prochain_rdv": "2021-06-11 09:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 136, + "internal_id": "767", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Jourcentralen Finspång, Vårdcentralen Finspång", + "url": "https://bokning.mittvaccin.se/klinik/800", + "location": { + "longitude": 15.770533893929782, + "latitude": 58.70608051396251, + "city": "Finspång", + "cp": "00000" + }, + "metadata": { + "address": "Brinells väg 9, Finspång", + "business_hours": null, + "phone_number": "010-105 92 60" + }, + "prochain_rdv": "2021-06-18 12:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 654, + "internal_id": "800", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Boxholm", + "url": "https://bokning.mittvaccin.se/klinik/793", + "location": { + "longitude": 15.054893601198318, + "latitude": 58.197016608136565, + "city": "Boxholm", + "cp": "00000" + }, + "metadata": { + "address": "Postgatan 3A, Boxholm", + "business_hours": null, + "phone_number": "010-105 99 30" + }, + "prochain_rdv": "2021-06-16 10:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 24, + "internal_id": "793", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Brinken, Motala", + "url": "https://bokning.mittvaccin.se/klinik/786", + "location": { + "longitude": 15.05121994624728, + "latitude": 58.52910929962361, + "city": "Motala", + "cp": "00000" + }, + "metadata": { + "address": "Sveavägen 32, Motala", + "business_hours": null, + "phone_number": "010-105 98 40" + }, + "prochain_rdv": "2021-06-23 13:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 76, + "internal_id": "786", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Kisa", + "url": "https://bokning.mittvaccin.se/klinik/784", + "location": { + "longitude": 15.636577186617247, + "latitude": 57.993053873247284, + "city": "Kinda", + "cp": "00000" + }, + "metadata": { + "address": "Danboms väg 2, Kisa", + "business_hours": null, + "phone_number": "010-105 94 60" + }, + "prochain_rdv": "2021-06-10 09:50:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 106, + "internal_id": "784", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Mantorp", + "url": "https://bokning.mittvaccin.se/klinik/792", + "location": { + "longitude": 15.287267325801164, + "latitude": 58.34958078726661, + "city": "Mjölby", + "cp": "00000" + }, + "metadata": { + "address": "Häradstorget 1, Mantorp", + "business_hours": null, + "phone_number": "010-105 98 20" + }, + "prochain_rdv": "2021-06-16 13:30:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 40, + "internal_id": "792", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Marieberg, Motala", + "url": "https://bokning.mittvaccin.se/klinik/787", + "location": { + "longitude": 15.000857221179281, + "latitude": 58.54028627387187, + "city": "Motala", + "cp": "00000" + }, + "metadata": { + "address": "Mariebergsgatan 2, Motala", + "business_hours": null, + "phone_number": "010-105 98 50" + }, + "prochain_rdv": "2021-06-23 13:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 4, + "internal_id": "787", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Vadstena", + "url": "https://bokning.mittvaccin.se/klinik/790", + "location": { + "longitude": 14.900405322256093, + "latitude": 58.453049173463825, + "city": "Vadstena", + "cp": "00000" + }, + "metadata": { + "address": "Jungfruvägen 5, Vadstena", + "business_hours": null, + "phone_number": "010-105 98 30" + }, + "prochain_rdv": "2021-06-15 10:10:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 202, + "internal_id": "790", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Valdemarsvik", + "url": "https://bokning.mittvaccin.se/klinik/804", + "location": { + "longitude": 16.591930415712007, + "latitude": 58.202359139360105, + "city": "Valdemarsvik", + "cp": "00000" + }, + "metadata": { + "address": "Brogatan 4 C, Valdemarsvik", + "business_hours": null, + "phone_number": "010-105 92 90" + }, + "prochain_rdv": "2021-06-11 15:40:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 172, + "internal_id": "804", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Åtvidaberg", + "url": "https://bokning.mittvaccin.se/klinik/795", + "location": { + "longitude": 15.99961132464145, + "latitude": 58.201514172606394, + "city": "Åtvidaberg", + "cp": "00000" + }, + "metadata": { + "address": "Adelswärdsgatan 2, Åtvidaberg", + "business_hours": null, + "phone_number": "010-105 97 30" + }, + "prochain_rdv": "2021-06-10 10:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 36, + "internal_id": "795", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Ödeshög", + "url": "https://bokning.mittvaccin.se/klinik/796", + "location": { + "longitude": 14.653408442038854, + "latitude": 58.22698409718737, + "city": "Ödeshög", + "cp": "00000" + }, + "metadata": { + "address": "Skolgatan 8, Ödeshög", + "business_hours": null, + "phone_number": "010-105 99 20" + }, + "prochain_rdv": "2021-06-10 10:20:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 198, + "internal_id": "796", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Österbymo", + "url": "https://bokning.mittvaccin.se/klinik/775", + "location": { + "longitude": 15.276615669711807, + "latitude": 57.825231189431214, + "city": "Ydre", + "cp": "00000" + }, + "metadata": { + "address": "Torggatan 2, Österbymo", + "business_hours": null, + "phone_number": "010-105 97 40" + }, + "prochain_rdv": "2021-06-15 10:00:00", + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 366, + "internal_id": "775", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ], + "centres_indisponibles": [ + { + "departement": "05", + "nom": "Barnavårdscentralen, Vårdcentralen Cityhälsan Söder", + "url": "https://bokning.mittvaccin.se/klinik/798", + "location": { + "longitude": 16.203069645521975, + "latitude": 58.575083792864135, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Plåtslagaregatan 10, Norrköping", + "business_hours": null, + "phone_number": "010-105 92 20" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "798", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Barnavårdscentralen, Vårdcentralen Lambohov", + "url": "https://bokning.mittvaccin.se/klinik/779", + "location": { + "longitude": 15.563992851510502, + "latitude": 58.387697845588555, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Tröskaregatan 28, Linköping", + "business_hours": null, + "phone_number": "010-105 94 82" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "779", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Barnavårdscentralen, Vårdcentralen Valla", + "url": "https://bokning.mittvaccin.se/klinik/777", + "location": { + "longitude": 15.604049195137922, + "latitude": 58.402643680358885, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Westmansgatan 25, Linköping", + "business_hours": null, + "phone_number": "010-105 96 80" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "777", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Barnavårdscentralen, Vårdcentralen Vikbolandet", + "url": "https://bokning.mittvaccin.se/klinik/805", + "location": { + "longitude": 16.565409757301243, + "latitude": 58.57525916232211, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Bygdevägen 13, Östra Husby", + "business_hours": null, + "phone_number": "010-104 48 14" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "805", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Capio Vårdcentral Vasastaden, Linköping", + "url": "https://bokning.mittvaccin.se/klinik/765", + "location": { + "longitude": 15.609051587827588, + "latitude": 58.41954779749085, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Nordengatan 49, Linköping", + "business_hours": null, + "phone_number": "010-105 96 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "765", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "HandCenter Linköping, Linköping", + "url": "https://bokning.mittvaccin.se/klinik/806", + "location": { + "longitude": 15.623713266407199, + "latitude": 58.41350947405841, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "S:t Larsgatan 15, Linköping", + "business_hours": null, + "phone_number": "013-470 06 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "806", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Helsa Vårdcentral Skarptorp, Norrköping", + "url": "https://bokning.mittvaccin.se/klinik/772", + "location": { + "longitude": 16.147567107807173, + "latitude": 58.57291791603411, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Helsa VC Skarptorp, Dalviksgatan 69, Norrköping", + "business_hours": null, + "phone_number": "011-19 08 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "772", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Helsa Vårdcentral Spiran, Norrköping", + "url": "https://bokning.mittvaccin.se/klinik/769", + "location": { + "longitude": 16.188762774328417, + "latitude": 58.58706747474632, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Helsa VC Spiran, Drottninggatan 56, Norrköping", + "business_hours": null, + "phone_number": "011-415 25 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "769", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Helsa Vårdcentral Östertull, Norrköping", + "url": "https://bokning.mittvaccin.se/klinik/768", + "location": { + "longitude": 16.20340478782557, + "latitude": 58.58798369531184, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Helsa VC Östertull, Vikboplan 7, Norrköping", + "business_hours": null, + "phone_number": "011-440 91 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "768", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Hierta Vårdcentral Vilbergen, Norrköping", + "url": "https://bokning.mittvaccin.se/klinik/774", + "location": { + "longitude": 16.17089235009939, + "latitude": 58.57157006021294, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Hierta VC Vilbergen, Urbergsgatan 90, Norrköping", + "business_hours": null, + "phone_number": "011-338 33 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "774", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Johannelunds Vårdcentral AB, Linköping", + "url": "https://bokning.mittvaccin.se/klinik/764", + "location": { + "longitude": 15.664319141264581, + "latitude": 58.39476125908773, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Johannelunds centrum, Linköping", + "business_hours": null, + "phone_number": "010-105 94 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "764", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Borensberg", + "url": "https://bokning.mittvaccin.se/klinik/788", + "location": { + "longitude": 15.27725651498119, + "latitude": 58.56199377653779, + "city": "Motala", + "cp": "00000" + }, + "metadata": { + "address": "Hamnvägen 3 B, Borensberg", + "business_hours": null, + "phone_number": "010-105 98 00" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "788", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Cityhälsan Centrum, Norrköping", + "url": "https://bokning.mittvaccin.se/klinik/797", + "location": { + "longitude": 16.178457241181867, + "latitude": 58.58320140970447, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Gamla Lasarettsgatan 18, Norrköping", + "business_hours": null, + "phone_number": "010-105 91 40" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "797", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Cityhälsan Norr, Norrköping", + "url": "https://bokning.mittvaccin.se/klinik/799", + "location": { + "longitude": 16.16109550257743, + "latitude": 58.605452225743285, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Sandbyhovsgatan 19, Norrköping", + "business_hours": null, + "phone_number": "010-105 91 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "799", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Kolmården", + "url": "https://bokning.mittvaccin.se/klinik/803", + "location": { + "longitude": 16.36261708710113, + "latitude": 58.66893796819196, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Munkvägen 13, Kolmården", + "business_hours": null, + "phone_number": "010-105 92 40" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "803", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Kungsgatan", + "url": "https://bokning.mittvaccin.se/klinik/778", + "location": { + "longitude": 15.619866827077075, + "latitude": 58.4129383330745, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Kungsgatan 39, Linköping", + "business_hours": null, + "phone_number": "010-105 99 84" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "778", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Linghem", + "url": "https://bokning.mittvaccin.se/klinik/781", + "location": { + "longitude": 15.782113081886944, + "latitude": 58.427148835562235, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Linghems centrum, Linghem", + "business_hours": null, + "phone_number": "010-105 96 30" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "781", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Ljungsbro", + "url": "https://bokning.mittvaccin.se/klinik/785", + "location": { + "longitude": 15.503412698459524, + "latitude": 58.508231047660395, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Evastigen 9, Ljungsbro", + "business_hours": null, + "phone_number": "010-105 94 90" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "785", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Lyckorna, Motala", + "url": "https://bokning.mittvaccin.se/klinik/789", + "location": { + "longitude": 15.029122607609523, + "latitude": 58.54408750788958, + "city": "Motala", + "cp": "00000" + }, + "metadata": { + "address": "Lasarettsgatan 37, Motala", + "business_hours": null, + "phone_number": "010-105 98 90" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "789", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Mjölby", + "url": "https://bokning.mittvaccin.se/klinik/791", + "location": { + "longitude": 15.123528222173523, + "latitude": 58.32447231689655, + "city": "Mjölby", + "cp": "00000" + }, + "metadata": { + "address": "Smålandsvägen 24, Mjölby", + "business_hours": null, + "phone_number": "010-105 99 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "791", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Skäggetorp, Linköping", + "url": "https://bokning.mittvaccin.se/klinik/782", + "location": { + "longitude": 15.5838806459751, + "latitude": 58.42764950087701, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Skäggetorps centrum 2, Linköping", + "business_hours": null, + "phone_number": "010-105 92 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "782", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Skänninge", + "url": "https://bokning.mittvaccin.se/klinik/794", + "location": { + "longitude": 15.087978265596139, + "latitude": 58.388454048032536, + "city": "Mjölby", + "cp": "00000" + }, + "metadata": { + "address": "Mjölbygatan 30, Skänninge", + "business_hours": null, + "phone_number": "010-105 98 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "794", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Skärblacka", + "url": "https://bokning.mittvaccin.se/klinik/802", + "location": { + "longitude": 15.914165170530007, + "latitude": 58.58066938685628, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Stationsvägen 2, Skärblacka", + "business_hours": null, + "phone_number": "010-105 91 20" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "802", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Tannefors, Linköping", + "url": "https://bokning.mittvaccin.se/klinik/776", + "location": { + "longitude": 15.641605076152151, + "latitude": 58.40700681515643, + "city": "Linköping", + "cp": "00000" + }, + "metadata": { + "address": "Nya Tanneforsvägen 43 C, Linköping", + "business_hours": null, + "phone_number": "010-105 96 70" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "776", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + }, + { + "departement": "05", + "nom": "Vårdcentralen Åby", + "url": "https://bokning.mittvaccin.se/klinik/801", + "location": { + "longitude": 16.18198682388985, + "latitude": 58.665479986213434, + "city": "Norrköping", + "cp": "00000" + }, + "metadata": { + "address": "Nyköpingsvägen 28, Åby", + "business_hours": null, + "phone_number": "010-105 93 10" + }, + "prochain_rdv": null, + "plateforme": "MittVaccin", + "type": "vaccination-center", + "appointment_count": 0, + "internal_id": "801", + "vaccine_type": null, + "appointment_by_phone_only": false, + "erreur": null, + "last_scan_with_availabilities": null, + "request_counts": null, + "appointment_schedules": [], + "gid": null + } + ] + } +} \ No newline at end of file diff --git a/data/output/map_centres.svg b/data/output/map_centres.svg new file mode 100644 index 00000000000..33c221774b5 --- /dev/null +++ b/data/output/map_centres.svg @@ -0,0 +1,853 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + 5 + + + + 10 + + + + 20 + + + + > + + + + + + + + + + + + + + + + + + + + + + + Dernière mise à jour: 11/06/2021 00:31 + + + diff --git a/data/output/map_creneaux.svg b/data/output/map_creneaux.svg new file mode 100644 index 00000000000..69f6fdeae67 --- /dev/null +++ b/data/output/map_creneaux.svg @@ -0,0 +1,853 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + 100 + + + + 500 + + + + 2000 + + + + > + + + + + + + + + + + + + + + + + + + + + + + Dernière mise à jour: 11/06/2021 00:31 + + + diff --git a/data/output/map_creneaux_pop.svg b/data/output/map_creneaux_pop.svg new file mode 100644 index 00000000000..8d8d9313e0d --- /dev/null +++ b/data/output/map_creneaux_pop.svg @@ -0,0 +1,853 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + 5 + + + + 10 + + + + 20 + + + + > + + + + + + + + + + + + + + + + + + + + + + + Dernière mise à jour: 11/06/2021 00:31 + + + diff --git a/data/output/stats.json b/data/output/stats.json index b6f9b484028..0ddc6f83266 100644 --- a/data/output/stats.json +++ b/data/output/stats.json @@ -50,9 +50,9 @@ "creneaux": 0 }, "12": { - "disponibles": 18, - "total": 39, - "creneaux": 11883 + "disponibles": 21, + "total": 37, + "creneaux": 3323 }, "01": { "disponibles": 0, @@ -90,23 +90,23 @@ "creneaux": 0 }, "14": { - "disponibles": 0, - "total": 112, - "creneaux": 0 + "disponibles": 6, + "total": 109, + "creneaux": 92 }, "18": { - "disponibles": 3, + "disponibles": 1, "total": 5, - "creneaux": 95 + "creneaux": 1 }, "05": { - "disponibles": 13, - "total": 38, - "creneaux": 2099 + "disponibles": 15, + "total": 40, + "creneaux": 2708 }, "tout_departement": { - "disponibles": 91, - "total": 339, - "creneaux": 38949 + "disponibles": 100, + "total": 336, + "creneaux": 30996 } } \ No newline at end of file diff --git a/generate_stats.py b/generate_stats.py index d314e097ea9..99c79abacc1 100644 --- a/generate_stats.py +++ b/generate_stats.py @@ -2,17 +2,21 @@ import pandas as pd from service.writer import Writer -with open('regions.json') as regions_json: +with open('departements.json') as regions_json: regions = json.load(regions_json) -output = {} +stats = {} centre_count = 0 supported_centre_count = 0 dose_count = 0 +info_centres = {} for region in regions: - - with open('{}.json'.format(region['code'])) as region_json: + region_code = region['code_departement'] + # if len(str(region_code)) < 2: + # region_code = '0{}'.format(region_code) + + with open('{}.json'.format(region_code)) as region_json: appointments = json.load(region_json) # Number of vaccination centres that have available vaccines @@ -36,16 +40,22 @@ else: supported_centre_count_by_region = 0 - output[region['code']] = { + stats[region_code] = { 'disponibles': int(centre_count_by_region), 'total': int(supported_centre_count_by_region), 'creneaux': int(dose_count_by_region), } + print(appointments) + info_centres[region_code] = appointments + + -output['tout_departement'] = { + +stats['tout_departement'] = { 'disponibles': int(centre_count), 'total': int(supported_centre_count), 'creneaux': int(dose_count), } - -Writer.write_json(output, 'data/output/stats.json') +print(info_centres) +Writer.write_json(stats, 'data/output/stats.json') +Writer.write_json(info_centres, 'data/output/info_centres.json') \ No newline at end of file diff --git a/stats_generation/stats_map.py b/stats_generation/stats_map.py new file mode 100644 index 00000000000..1d9953ef8b7 --- /dev/null +++ b/stats_generation/stats_map.py @@ -0,0 +1,257 @@ +import sys +sys.path.append('/Users/anabulascruz/github/JagVillHaVaccin/') + +import io +import csv +import json +import httpx +import logging + +from datetime import date, datetime, timedelta +import pytz +from pathlib import Path + +from utils.vmd_config import get_conf_inputs +from utils.vmd_logger import enable_logger_for_debug + +timeout = httpx.Timeout(30.0, connect=30.0) +DEFAULT_CLIENT = httpx.Client(timeout=timeout) +logger = logging.getLogger("scraper") + +PALETTE_FB = ["#ffffff", "#eaeaea", "#cecece", "#80bdf4", "#2d8dfe"] +# PALETTE_FB_RDV = ["#eaeaea", "#F44848", "#FF9255", "#FFD84F", "#FEE487", "#7DF0AE", "#27DF76", "#00B94F"] +ECHELLE_STROKE = "#797979" +ECHELLE_FONT = "#424242" +MAP_SRC_PATH = Path(get_conf_inputs().get("map")) +CSV_POP_URL = get_conf_inputs().get("dep_pop") +# CSV_RDV_URL = get_conf_inputs().get("rdv_gouv") +JSON_INFO_CENTRES_URL = get_conf_inputs().get("last_scans") + + +def get_csv(url: str, header=True, delimiter=";", encoding="utf-8", client: httpx.Client = DEFAULT_CLIENT): + try: + r = client.get(url) + r.raise_for_status() + except httpx.HTTPStatusError as hex: + logger.warning(f"{url} returned error {hex.response.status_code}") + return None + + reader = io.StringIO(r.content.decode(encoding)) + csvreader = csv.DictReader(reader, delimiter=delimiter) + + return csvreader + + +def get_json(url: str, client: httpx.Client = DEFAULT_CLIENT): + try: + r = client.get(url) + r.raise_for_status() + except httpx.HTTPStatusError as hex: + logger.warning(f"{url} returned error {hex.response.status_code}") + return None + return r.json() + + +def make_svg( + style: str, filename: str, echelle: list, echelle_labels: list = [], title: str = "vitemadose.covidtracker.fr" +): + logger.info(f"making {filename}...") + map_svg = "" + paris_tz = pytz.timezone("Europe/Paris") + with open(MAP_SRC_PATH, "r", encoding="utf-8") as f: + map_svg = f.read() + map_svg = map_svg.replace("/*@@@STYLETAG@@@*/", style) + map_svg = map_svg.replace("@@@TITRETAG@@@", title) + map_svg = map_svg.replace( + "@@@UPDATETAG@@@", f'Dernière mise à jour: {datetime.now().astimezone(paris_tz).strftime("%d/%m/%Y %H:%M")}' + ) + for i in range(0, 10): + echelle_title = "" + if i < len(echelle_labels): + echelle_title = str(echelle_labels[i]) + map_svg = map_svg.replace(f"@e{i}", echelle_title) + with open(Path("data", "output", filename), "w", encoding="utf-8") as f: + f.write(map_svg) + + +def make_style( + depts: dict, + filename: str, + palette: list, + echelle: list, + echelle_labels: list = [], + title: str = "https://vitemadose.covidtracker.fr", +): + style = "" + if echelle_labels == []: + echelle_labels = echelle + for dept, dept_stat in depts.items(): + logger.debug(f"[{dept}] {dept_stat}") + color = palette[len(palette) - 1] + for i in range(0, len(echelle)): + if dept_stat <= echelle[i]: + color = palette[i] + break + dept_style = f".departement{dept.lower()} {{ fill: {color}; }}\n" + style += dept_style + + style += f".echelle {{ stroke:{ECHELLE_STROKE}; stroke-width:0.5;}}\n" + style += f".echelle-font {{ stroke:{ECHELLE_FONT}; }}\n" + + for i in range(0, 10): + color = "none" + stroke = "none" + if i < len(palette): + color = palette[i] + stroke = ECHELLE_STROKE + echelle_style = f".echelle{i} {{ fill: {color}; stroke: {stroke}; }}\n" + style += echelle_style + + make_svg(style, filename, echelle, echelle_labels, title) + + +def make_stats_creneaux(stats): + echelle = [0, 100, 500, 2000] + labels = ["-", "100", "500", "2000", ">"] + depts = {} + ceiling = 1000000 + top_count = 0 + for dept, dept_stat in stats.items(): + nb = min(dept_stat["creneaux"], ceiling) + top_count = max(nb, top_count) + depts[dept] = nb + make_style(depts, "map_creneaux.svg", PALETTE_FB, echelle, echelle_labels=labels, title="Créneaux disponibles") + + +def make_stats_centres(stats: dict): + echelle = [0, 5, 10, 20] + labels = ["0", "5", "10", "20", ">"] + depts = {} + ceiling = 1000000 + top_count = 0 + for dept, dept_stat in stats.items(): + nb = min(dept_stat["disponibles"], ceiling) + top_count = max(nb, top_count) + depts[dept] = nb + make_style( + depts, + "map_centres.svg", + PALETTE_FB, + echelle, + echelle_labels=labels, + title="Centres ayant des créneaux disponibles", + ) + + +def make_stats_creneaux_pop(stats: dict): + echelle = [0, 5, 10, 20] + labels = ["0", "5", "10", "20", ">"] + depts = {} + ceiling = 1000000 + top_count = 0 + for dept, dept_stat in stats.items(): + if dept_stat["population"] == 0: + logger.warning(f"No population data for department {dept}") + continue + nb = min(dept_stat["creneaux"] / (int(dept_stat["population"]) / 1000), ceiling) + top_count = max(nb, top_count) + depts[dept] = nb + make_style( + depts, + "map_creneaux_pop.svg", + PALETTE_FB, + echelle, + echelle_labels=labels, + title="Créneaux disponibles pour 1000 habitants", + ) + + +# def make_stats_rdv(dept_rdv: dict): +# echelle = [0, 40, 50, 60, 70, 80, 90] +# labels = ["-", "40%", "50%", "60%", "70%", "80%", "90%", ">"] +# depts = {} +# today = date.today() +# next_monday = (today + timedelta(days=7 - today.weekday())).strftime("%Y-%m-%d") +# previous_monday = (today + timedelta(days=0 - today.weekday())).strftime("%Y-%m-%d") +# logger.debug(f"next_monday: {next_monday}") +# logger.debug(f"previous_monday: {previous_monday}") +# monday = previous_monday +# for dept, dept_stat in dept_rdv.items(): +# doses_allouees = 0 +# rdv_pris = 0 +# if monday not in dept_stat: +# continue +# doses_allouees += dept_stat[monday]["doses_allouees"] +# if doses_allouees == 0: +# logger.warning(f"No doses data for department {dept}") +# continue +# rdv_pris += dept_stat[monday]["rdv_pris"] +# taux = 100 * rdv_pris / doses_allouees +# depts[dept] = taux +# make_style(depts, "map_taux_rdv.svg", PALETTE_FB_RDV, echelle, echelle_labels=labels, title="rdv") + + +def make_maps(info_centres: dict): + dept_pop = {} + + with open(CSV_POP_URL, 'r') as file: + csv_pop = csv.DictReader(file, delimiter=';') + # get_csv(CSV_POP_URL, header=True, delimiter=";") + + for row in csv_pop: + dept_pop[row["dep"]] = row["departmentPopulation"] + + # dept_rdv = {} + # csv_rdv = get_csv(CSV_RDV_URL, header=True, delimiter=",", encoding="windows-1252") + # if not csv_rdv: + # logger.error("Pas possible de générer les cartes, le fichier n'est pas disponible") + # return + + # for row in csv_rdv: + # date_debut_semaine = row["date_debut_semaine"] + # code_departement = row["code_departement"] + # doses_allouees = int(row["doses_allouees"]) + # rdv_pris = int(row["rdv_pris"]) + # if code_departement not in dept_rdv: + # dept_rdv[code_departement] = dict() + # if date_debut_semaine not in dept_rdv[code_departement]: + # dept_rdv[code_departement][date_debut_semaine] = {"doses_allouees": 0, "rdv_pris": 0} + # dept_rdv[code_departement][date_debut_semaine]["doses_allouees"] += doses_allouees + # dept_rdv[code_departement][date_debut_semaine]["rdv_pris"] += rdv_pris + + stats = {} + + for dept, info_centres_dept in info_centres.items(): + stats[dept] = {} + centres_disponibles = 0 + centres_total = 0 + creneaux_disponibles = 0 + for centre_disponible in info_centres_dept.get("centres_disponibles", []): + centres_disponibles += 1 + creneaux_disponibles += centre_disponible["appointment_count"] + centres_total = centres_disponibles + centres_total += len(info_centres_dept.get("centres_indisponibles", [])) + stats[dept] = { + "disponibles": centres_disponibles, + "total": centres_total, + "creneaux": creneaux_disponibles, + "population": dept_pop.get(dept, 0), + } + + make_stats_creneaux(stats) + make_stats_centres(stats) + make_stats_creneaux_pop(stats) + # make_stats_rdv(dept_rdv) + + +def main(): + enable_logger_for_debug() + # info_centres = get_json(JSON_INFO_CENTRES_URL) + print(JSON_INFO_CENTRES_URL) + with open('data/output/info_centres.json') as jsonFile: + info_centres = json.load(jsonFile) + make_maps(info_centres) + + +if __name__ == "__main__": + main() diff --git a/utils/vmd_config.py b/utils/vmd_config.py new file mode 100644 index 00000000000..d7689f2c51c --- /dev/null +++ b/utils/vmd_config.py @@ -0,0 +1,42 @@ +import json +from pathlib import Path +from typing import Optional + +from utils.vmd_logger import get_logger + +CONFIG_DATA = {} + +logger = get_logger() + + +def get_config() -> dict: + global CONFIG_DATA + if not CONFIG_DATA: + try: + CONFIG_DATA = json.loads(Path("config.json").read_text(encoding="utf8")) + except (OSError, ValueError): + logger.exception("Unable to load configuration file.") + return CONFIG_DATA + + +def get_conf_inputs() -> Optional[dict]: + return get_config().get("inputs", {}) + + +def get_conf_outputs() -> Optional[dict]: + return get_config().get("outputs", {}) + + +def get_conf_outstats() -> Optional[dict]: + return get_conf_outputs().get("stats", {}) + + +def get_conf_platform(platform: str) -> dict: + if not get_config().get("platforms"): + logger.error("Unknown ’platforms’ key in configuration file.") + exit(1) + platform_conf = get_config().get("platforms").get(platform) + if not platform_conf: + logger.error(f"Unknown ’{platform}’ platform in configuration file.") + exit(1) + return platform_conf diff --git a/utils/vmd_logger.py b/utils/vmd_logger.py new file mode 100644 index 00000000000..3f3589e184a --- /dev/null +++ b/utils/vmd_logger.py @@ -0,0 +1,113 @@ +import logging + +from terminaltables import AsciiTable + + +class CustomFormatter(logging.Formatter): + grey = "\x1b[38;21m" + yellow = "\x1b[33;21m" + red = "\x1b[31;21m" + bold_red = "\x1b[31;1m" + reset = "\x1b[0m" + format = "%(asctime)s | [%(levelname)s] %(message)s" + + FORMATS = { + logging.DEBUG: grey + format + reset, + logging.INFO: grey + format + reset, + logging.WARNING: yellow + format + reset, + logging.ERROR: red + format + reset, + logging.CRITICAL: bold_red + format + reset, + } + + def format(self, record): + log_fmt = self.FORMATS.get(record.levelno) + formatter = logging.Formatter(log_fmt) + return formatter.format(record) + + +def get_logger(): + # create logger + return logging.getLogger("scraper") + + +def enable_logger_for_production(): + logger = get_logger() + logger.setLevel(logging.INFO) + + if not logger.handlers: + ch = logging.StreamHandler() + ch.setLevel(logging.DEBUG) + ch.setFormatter(CustomFormatter()) + logger.addHandler(ch) + + return logger + + +def enable_logger_for_debug(): + # must be called after enable_logger_for_production(), otherwise it'll be partially overridden by it + logger = get_logger() + logger.setLevel(logging.DEBUG) + + # disable production "scraper" logger handler: all will be handled on root logger + if logger.handlers: + logger.handlers = [] + + root_logger = logging.root + root_logger.setLevel(logging.DEBUG) + + if not root_logger.handlers: + ch = logging.StreamHandler() + ch.setLevel(logging.DEBUG) + ch.setFormatter(CustomFormatter()) + root_logger.addHandler(ch) + + +def log_requests(request): + logger = get_logger() + if not request or not request.requests: + logger.debug(f"{request.internal_id} requests -> No requests made.") + return + requests = "" + total_requests = 0 + for type, value in request.requests.items(): + requests += f", {type}({value})" + total_requests += value + logger.debug(f"{request.internal_id} requests -> Total({total_requests}){requests}") + + +def log_platform_requests(centers): + logger = get_logger() + platforms = {} + + print("Requests count:") + # Not fan of the way I do this + # maybe python has builtin ways to do this in an easier way + if not centers: + logger.info(f"No centers found.") + return + for center in centers: + platform = center.plateforme + if platform not in platforms: + platforms[platform] = {} + if not center.request_counts: + continue + for request_type, request_count in center.request_counts.items(): + if request_type not in platforms[platform]: + platforms[platform][request_type] = 0 + platforms[platform][request_type] += request_count + if not platforms: + logger.info("No platforms found.") + datatable_keys = ["Platform", "Total"] + datatable_keys.extend(list(set([subkey for sdict in platforms.values() for subkey in sdict]))) + datatable = [datatable_keys] + for platform, requests in platforms.items(): + data = [platform] + for key in datatable_keys: + if key == "Total": + data.append(sum([req_count for req_count in requests.values()])) + elif key != "Platform": + data.append(requests.get(key, 0)) + datatable.append(data) + + table = AsciiTable(datatable) + print(table.table) \ No newline at end of file From 1fa17c67e3176a5d5f1ef76a7e160ae29a3bf8a5 Mon Sep 17 00:00:00 2001 From: Ana Bulas Cruz Date: Fri, 11 Jun 2021 01:32:16 +0200 Subject: [PATCH 1182/1182] Clean code in map.svg. Regenerate the output maps afterwards. --- data/input/map.svg | 25 ++++++------------------- data/output/map_centres.svg | 29 ++++++++--------------------- data/output/map_creneaux.svg | 29 ++++++++--------------------- data/output/map_creneaux_pop.svg | 29 ++++++++--------------------- 4 files changed, 30 insertions(+), 82 deletions(-) diff --git a/data/input/map.svg b/data/input/map.svg index 1ca588df762..48bd468a53a 100644 --- a/data/input/map.svg +++ b/data/input/map.svg @@ -18,7 +18,7 @@ height="553.50446" width="631.07117"> - - - - - - - - - + diff --git a/data/output/map_centres.svg b/data/output/map_centres.svg index 33c221774b5..7397fe6d8f2 100644 --- a/data/output/map_centres.svg +++ b/data/output/map_centres.svg @@ -18,7 +18,7 @@ height="553.50446" width="631.07117"> - - - - - - - - - + @@ -847,7 +834,7 @@ y="540.40228" x="13.566586" id="tspan183" - sodipodi:role="line">Dernière mise à jour: 11/06/2021 00:31 + sodipodi:role="line">Dernière mise à jour: 11/06/2021 01:31 - + diff --git a/data/output/map_creneaux.svg b/data/output/map_creneaux.svg index 69f6fdeae67..637a771e947 100644 --- a/data/output/map_creneaux.svg +++ b/data/output/map_creneaux.svg @@ -18,7 +18,7 @@ height="553.50446" width="631.07117"> - - - - - - - - - + @@ -847,7 +834,7 @@ y="540.40228" x="13.566586" id="tspan183" - sodipodi:role="line">Dernière mise à jour: 11/06/2021 00:31 + sodipodi:role="line">Dernière mise à jour: 11/06/2021 01:31 - + diff --git a/data/output/map_creneaux_pop.svg b/data/output/map_creneaux_pop.svg index 8d8d9313e0d..c04e1b8060d 100644 --- a/data/output/map_creneaux_pop.svg +++ b/data/output/map_creneaux_pop.svg @@ -18,7 +18,7 @@ height="553.50446" width="631.07117"> - - - - - - - - - + @@ -847,7 +834,7 @@ y="540.40228" x="13.566586" id="tspan183" - sodipodi:role="line">Dernière mise à jour: 11/06/2021 00:31 + sodipodi:role="line">Dernière mise à jour: 11/06/2021 01:31 - +