up convert geojson to csv with full columns
This commit is contained in:
parent
1c2d10e629
commit
0c5fa2cfb1
@ -1,13 +1,6 @@
|
|||||||
import argparse
|
import argparse
|
||||||
import json
|
import json
|
||||||
import pandas_geojson as pdg
|
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import os
|
|
||||||
###
|
|
||||||
# convertir un jeu de données geojson pris d'openstreetmap, convertit en geojson, pour le convertir en csv
|
|
||||||
# ce afin de lire facilement les données obtenues depuis overpass sans avoir à spécifier manuellement les colonnes représentant les tags
|
|
||||||
###
|
|
||||||
|
|
||||||
# définir le parseur d'arguments
|
# définir le parseur d'arguments
|
||||||
parser = argparse.ArgumentParser(description="Convertir un fichier GeoJSON en CSV et ajouter des colonnes latitude et longitude")
|
parser = argparse.ArgumentParser(description="Convertir un fichier GeoJSON en CSV et ajouter des colonnes latitude et longitude")
|
||||||
@ -15,39 +8,48 @@ parser.add_argument("geojson", help="Le chemin du fichier GeoJSON à convertir")
|
|||||||
parser.add_argument("-o", "--output", default=None, help="Le nom du fichier de sortie CSV (par défaut: le même nom que le fichier GeoJSON avec l'extension CSV)")
|
parser.add_argument("-o", "--output", default=None, help="Le nom du fichier de sortie CSV (par défaut: le même nom que le fichier GeoJSON avec l'extension CSV)")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
# charger le fichier GeoJSON en tant que dataframe
|
# charger le fichier GeoJSON en tant que liste de features
|
||||||
with open(args.geojson, "r") as f:
|
with open(args.geojson, "r") as f:
|
||||||
data = json.load(f)
|
data = json.load(f)
|
||||||
|
|
||||||
# afficher le décompte des éléments
|
# afficher le décompte des éléments
|
||||||
print("Nombre d'éléments dans le fichier GeoJSON :", len(data["features"]))
|
print("Nombre d'éléments dans le fichier GeoJSON :", len(data["features"]))
|
||||||
|
|
||||||
|
# initialiser un ensemble pour stocker les clés de toutes les features
|
||||||
|
all_keys = set()
|
||||||
|
|
||||||
# initialiser un dataframe vide
|
# parcourir chaque feature pour trouver les clés de tag
|
||||||
# définir les noms des colonnes à partir des propriétés prises dans la boucle append
|
for feature in data["features"]:
|
||||||
keys = list(data["features"][0]["properties"]['tags'].keys())
|
# ajouter les clés de la feature à l'ensemble
|
||||||
columns= keys
|
all_keys.update(feature["properties"]["tags"].keys())
|
||||||
|
|
||||||
|
# convertir l'ensemble en liste et trier les clés
|
||||||
|
columns = sorted(list(all_keys))
|
||||||
|
|
||||||
# initialiser le dataframe avec les colonnes définies ci-dessus
|
# initialiser le dataframe avec les colonnes définies ci-dessus
|
||||||
df = pd.DataFrame(columns=columns)
|
df = pd.DataFrame(columns=["id", "latitude", "longitude"] + columns)
|
||||||
|
|
||||||
# définir une fonction qui prend en entrée un élément du JSON et renvoie un dictionnaire avec les valeurs correspondantes pour chaque tag
|
# parcourir chaque feature pour ajouter une nouvelle ligne au dataframe avec les valeurs de chaque tag
|
||||||
def get_element_tags_values(element):
|
for feature in data["features"]:
|
||||||
values = {}
|
# définir la latitude et la longitude selon la première coordonnée si la géométrie est de type Linestring
|
||||||
for column in columns[1:]: # on saute la première colonne "id"
|
if feature["geometry"]["type"] == "LineString":
|
||||||
tag = column.split(":")[-1] # on prend le nom du tag à partir du nom de la colonne
|
latitude = feature["geometry"]["coordinates"][0][1]
|
||||||
values[column] = element["properties"]["tags"].get(tag, "")
|
longitude = feature["geometry"]["coordinates"][0][0]
|
||||||
values["id"] = element["properties"]["id"]
|
else:
|
||||||
values["latitude"] = element["geometry"]["coordinates"][0]
|
latitude = feature["geometry"]["coordinates"][1]
|
||||||
values["longitude"] = element["geometry"]["coordinates"][1]
|
longitude = feature["geometry"]["coordinates"][0]
|
||||||
return values
|
|
||||||
|
|
||||||
# parcourir chaque élément pour trouver les clés de tag
|
row = {
|
||||||
for element in data["features"]:
|
"id": feature["properties"]["id"],
|
||||||
# ajouter une nouvelle ligne au dataframe avec les valeurs de chaque tag
|
"latitude": latitude,
|
||||||
df = df._append(get_element_tags_values(element), ignore_index=True)
|
"longitude": longitude
|
||||||
|
}
|
||||||
|
# ajouter les valeurs de chaque tag à la ligne
|
||||||
|
for key in columns:
|
||||||
|
row[key] = feature["properties"]["tags"].get(key, "")
|
||||||
|
df = df._append(row, ignore_index=True)
|
||||||
|
|
||||||
# # définir le nom du fichier de sortie CSV
|
# définir le nom du fichier de sortie CSV
|
||||||
if args.output:
|
if args.output:
|
||||||
output_file = args.output
|
output_file = args.output
|
||||||
else:
|
else:
|
||||||
@ -55,4 +57,4 @@ else:
|
|||||||
|
|
||||||
print('fichier csv converti : ', output_file)
|
print('fichier csv converti : ', output_file)
|
||||||
# convertir le dataframe en CSV en incluant toutes les colonnes
|
# convertir le dataframe en CSV en incluant toutes les colonnes
|
||||||
df.to_csv(output_file, sep=";", index=False)
|
df.to_csv(output_file, sep=";", index=False)
|
@ -5,6 +5,6 @@
|
|||||||
|
|
||||||
url='https://overpass-api.de/api/interpreter?data=[out:json][timeout:300];area(id:3602202162)->.searchArea;nwr["amenity"="townhall"](area.searchArea);out+meta;'
|
url='https://overpass-api.de/api/interpreter?data=[out:json][timeout:300];area(id:3602202162)->.searchArea;nwr["amenity"="townhall"](area.searchArea);out+meta;'
|
||||||
|
|
||||||
export_file="ask_angela_points_from_openstreetmap"
|
export_file="mairies_points_from_openstreetmap"
|
||||||
source ../../update_scripts/functions.sh
|
source ../../update_scripts/functions.sh
|
||||||
extract_from_osm $url $export_file
|
extract_from_osm $url $export_file
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@
|
|||||||
"version": 0.6,
|
"version": 0.6,
|
||||||
"generator": "Overpass API 0.7.62.1 084b4234",
|
"generator": "Overpass API 0.7.62.1 084b4234",
|
||||||
"osm3s": {
|
"osm3s": {
|
||||||
"timestamp_osm_base": "2024-10-28T11:07:26Z",
|
"timestamp_osm_base": "2024-10-28T14:45:15Z",
|
||||||
"timestamp_areas_base": "2024-10-28T09:21:30Z",
|
"timestamp_areas_base": "2024-10-28T09:21:30Z",
|
||||||
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
||||||
},
|
},
|
||||||
|
16552
osm_output/mairies_points_from_openstreetmap.csv
Normal file
16552
osm_output/mairies_points_from_openstreetmap.csv
Normal file
File diff suppressed because it is too large
Load Diff
416947
osm_output/mairies_points_from_openstreetmap.geojson
Normal file
416947
osm_output/mairies_points_from_openstreetmap.geojson
Normal file
File diff suppressed because it is too large
Load Diff
967524
osm_output/mairies_points_from_openstreetmap.osm.json
Normal file
967524
osm_output/mairies_points_from_openstreetmap.osm.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,85 +1,96 @@
|
|||||||
addr:full;amenity;check_date;contact:phone;contact:website;family_planning:handles:abortion;family_planning:handles:contraception;family_planning:handles:detection;family_planning:handles:sexualities;family_planning:handles:violences;healthcare:speciality;name;social_facility;id;latitude;longitude
|
id;latitude;longitude;addr:city;addr:country;addr:floor;addr:full;addr:housenumber;addr:postcode;addr:street;addr:unit;amenity;building;building:levels;check_date;contact:city;contact:email;contact:facebook;contact:housenumber;contact:instagram;contact:mobile;contact:phone;contact:postcode;contact:street;contact:website;contact:youtube;description;email;family_planning:handles:abortion;family_planning:handles:contraception;family_planning:handles:detection;family_planning:handles:sexualities;family_planning:handles:violences;healthcare;healthcare:speciality;healthcare:speciality:de;name;nat_name;note;office;opening_hours;operator;phone;phone:FR:tollfree;ref:FR:FINESS;social_facility;social_facility:for;source;type:FR:FINESS;website
|
||||||
;social_facility;2023-10-24;;;;;;;;;Le planning familial 44;outreach;669161207.0;-1.5725557;47.2076003
|
669161207;47.2076003;-1.5725557;;;;4 rue Meuris44100 NANTES;;;;;social_facility;;;2023-10-24;;;;;;;02 40 20 41 51;;;https://www.planning-familial.org/fr/le-planning-familial-de-loire-atlantique-44;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial 44;;;;;;;;;outreach;;;;
|
||||||
;;;;;;;;;;;Planning Familial;;1817801880.0;4.8567996;46.783092
|
1817801880;46.783092;4.8567996;;;;;;;;;;;;;Chalon-sur-Saône;;;3;;;;71100;Place du Théâtre;;;;;;;;;;;family_planning;;Planning Familial;;;government;mo-su 9:00-12:00,14:00-18:00;;;;;;;;;
|
||||||
;social_facility;;;;;;;;;;Le planning familial des pyrénées orientales - 66;outreach;3052055132.0;2.8855107;42.6924839
|
3052055132;42.6924839;2.8855107;;;;25, avenue Julien Panchot, 66000 PERPIGNAN;;;;;social_facility;;;;;;;;;;04 68 51 09 68;;;https://www.planning-familial.org/fr/le-planning-familial-des-pyrenees-orientales-66;;;;no;no;no;no;no;;family_planning;;Le planning familial des pyrénées orientales - 66;;;;;;;;;outreach;;;;
|
||||||
;social_facility;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-loire-42;;;;;;;Le Planning Familial;outreach;6323319935.0;4.3825726;45.4360559
|
6323319935;45.4360559;4.3825726;;;;16, rue Polignais, 42000 ST. ETIENNE;;;;;social_facility;;;;;contact@nouveauplanning42.org;;;;;;;;;;;;yes;yes;no;yes;yes;;family_planning;;Le Planning Familial;;;;We,Th 14:00-17:00;;;;;outreach;;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-loire-42
|
||||||
;social_facility;2023-07-29;;;;;;;;;Le planning familial de la gironde - 33;outreach;7003601112.0;-0.5601546;44.8269336
|
7003601112;44.8269336;-0.5601546;;;;19 rue Eugène Le Roy 33800 BORDEAUX;;;;;social_facility;;;2023-07-29;;;;;;;05 56 44 00 04;;;https://www.planning-familial.org/fr/le-planning-familial-de-gironde-33;;;;yes;yes;no;yes;yes;;family_planning;;Le planning familial de la gironde - 33;;;;;;;;;outreach;;;;
|
||||||
;social_facility;;;;;;;;;;Planning familial du nord;outreach;7429068423.0;3.0671242;50.6316329
|
7175230273;50.608366;3.3961514;Tournai;;;;19;7500;Rue Duquesnoy;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial - Au Quai;;;;;;;;;;;;;https://auquai.be/
|
||||||
;;;"+33 800 08 11 11;+33 7 87 83 22 49;+33 7 69 46 85 18";;;;;;;;Planning familial des Millevaches;;9506347102.0;2.0553623;45.7020496
|
7429068423;50.6316329;3.0671242;;;;16, av Kennedy, 59000 LILLE;;;;;social_facility;;;;Lille;;https://www.facebook.com/groups/111627542215478/;16;;;+33 3 20 57 74 80;59800;Avenue du Président John-Fitzgerald Kennedy;https://www.planning-familial.org/fr/le-planning-familial-du-nord-59;;;;no;yes;no;yes;yes;;family_planning;;Planning familial du nord;;;;;;;;;outreach;;Métropole Européenne de Lille;;
|
||||||
;;;;;;;;;;;Le planning familial;;9739960886.0;-0.374171;43.2997804
|
8131842962;50.4464512;3.8160826;Saint-Ghislain;;;;3;7330;Onzième Rue;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;"Centre de Planning Familial ""Léa Lor""";;;;;;;;;;;;;http://www.centredeplanningfamiliallealor.be/
|
||||||
;social_facility;;;;;;;;;;Planning Familial;outreach;10117172281.0;-1.4683856;43.4969782
|
9431738380;50.4502666;3.9515271;Mons;;;;46;7000;Rue de la Grande Triperie;;;;;;;;https://www.facebook.com/Planning-Familial-La-Famille-Heureuse-de-Mons-1088400341180784/;;;;+32 65 33 93 61;;;;;;planningfamilialmons@skynet.be;;;;;;counselling;family_planning;;La Famille Heureuse;;;;;;;;;;;;;
|
||||||
;social_facility;;+33 4 78 89 50 61;https://www.planning-familial.org/fr/le-planning-familial-du-rhone-69;;;;;;;Planning Familial du Rhône (69);outreach;10199374470.0;4.8659142;45.7758113
|
9506347102;45.7020496;2.0553623;;;;Maison des associations, côte de Vinzan, 19290;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-correze-19;;;;yes;yes;yes;yes;yes;;family_planning;;Planning familial des Millevaches;;;association;;;"+33 800 08 11 11;+33 7 87 83 22 49;+33 7 69 46 85 18";;;;;;;
|
||||||
;social_facility;;+33 3 88 32 28 28;https://www.planning-familial.org/fr/le-planning-familial-du-bas-rhin-67;;;;;;;Le planning familial du bas-rhin - 67;outreach;10755913522.0;7.7428619;48.5829521
|
9739960886;43.2997804;-0.374171;;;;;;;;;;;;;;;;;;;+33689667775;;;https://www.planning-familial.org/fr/le-planning-familial-des-pyrenees-atlantiques-64;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial;;;association;;;;;;;;;;
|
||||||
;;;;https://la-bulle.org/;;;;;;;La Bulle;;11082001339.0;4.1665139;50.4132494
|
10117172281;43.4969782;-1.4683856;;;;;;;;;social_facility;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-des-pyrenees-atlantiques-64;;;;;;;;;;family_planning;;Planning Familial;;;;;;;;;outreach;;;;
|
||||||
;doctors;;+334 67 64 62 19;https://www.planning-familial.org/fr/le-planning-familial-de-lherault-34#reception-services-anchor;;;;;;;Le planning familial de l'hérault - 34;;11349579771.0;3.8836926;43.6174457
|
10199374470;45.7758113;4.8659142;Villeurbanne;;;;2;69100;Rue Lakanal;;social_facility;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-rhone-69;;;;yes;yes;no;yes;yes;;family_planning;;Planning Familial du Rhône (69);;;;;;+33 4 78 89 50 61;;;outreach;;;;https://www.planning-familial.org/fr/le-planning-familial-du-rhone-69
|
||||||
;;;;;;;;;;;Planning familial des yvelines - 78;assisted_living;11874180234.0;1.9115478;48.9810064
|
10755913522;48.5829521;7.7428619;Strasbourg;FR;;13 rue du 22 novembre67000 Strasbourg;13;67000;Rue du 22 Novembre;;social_facility;;;;;;https://www.facebook.com/LePlanningFamilial67/;;https://www.instagram.com/le_planning_familial_67;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-bas-rhin-67;https://www.youtube.com/channel/UCNkBITbttc4YjmPPEUhAY_A;;mfpf67@wanadoo.fr;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du bas-rhin - 67;Le Planning Familial du Bas-Rhin - 67;;;"Mo 14:00-18:00; Tu,Th 16:00-19:00; We 14:00-19:00; Fr 14:00-17:00; Sa 09:00-12:00 || ""Sur rendez-vous""";Mouvement français pour le planning familial;+33 3 88 32 28 28;0800 08 11 11;;outreach;"abused;woman";;;https://www.planning-familial.org/fr/le-planning-familial-du-bas-rhin-67
|
||||||
;social_facility;;;;;;;;;;Planning familial;;11874187084.0;2.081406;49.0372102
|
11082001339;50.4132494;4.1665139;Binche;;;;66;7130;Avenue Charles Deliège;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;La Bulle;;;;;;;;;;;;;https://la-bulle.org/
|
||||||
;social_facility;;;;;;;;;;Le planning familial de la réunion - 974;outreach;11874189700.0;55.4325962;-21.2840967
|
11349579771;43.6174457;3.8836926;;;;;27;34000;Rue de Substantion;;doctors;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lherault-34;;Consultations contraceptions, dépistage, test de grossesse, suivi gynécologique. Accueil collectif suivi d'un entretien médical individuel.;;;;;;;;family_planning;;Le planning familial de l'hérault - 34;;;;"Tu 14:30-14:30; We 14:00-14:00; Fr 12:00-12:00";;+334 67 64 62 19;;34 000 147 8;;;;228;https://www.planning-familial.org/fr/le-planning-familial-de-lherault-34#reception-services-anchor
|
||||||
;;;;;;;;;;;Le planning familial de l'aveyron - 12;;12206871528.0;3.0794673;44.098744
|
11874180234;48.9810064;1.9115478;;;;204 avenue Paul Raoult78130 Les Mureaux;;;;;;;;;;;;;;;09 71 50 91 66;;;https://www.planning-familial.org/fr/le-planning-familial-des-yvelines-78;;;;yes;yes;no;yes;yes;;family_planning;;Planning familial des yvelines - 78;;;;;;;;;assisted_living;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'essonne - 91;;12284922394.0;2.3756959;48.6503163
|
11874187084;49.0372102;2.081406;;;;;;;;;social_facility;;;;;;;;;;;;;;;;;;;;;;;family_planning;;Planning familial;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du finistère - 29;;12284951572.0;-4.3298663;48.0789229
|
11874189700;-21.2840967;55.4325962;;;;13D chemin des mangues carottes97450 ST. LOUIS;;;;;social_facility;;;;;;;;;;+33800081111;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-reunion-974;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de la réunion - 974;;;;;;;;;outreach;woman;;;
|
||||||
;;;;;;;;;;;Le planning familial d'ille-et-vilaine - 35;;12284969963.0;-1.6841853;48.1043623
|
12030998698;50.5197581;5.2416027;Huy;;;;1;4500;Rue Delloye Matthieu;;;;;;;huy@planningfamilial.net;https://www.facebook.com/profile.php?id=100064975082343;;;;;;;;;;;;;;;;counselling;family_planning;family planning;« Choisir Huy » Planning Familial;;;;"Mo 10:00-16:30; We 12:00-16:30; Tu, Th 15:00-16:30; Fr 12:00-19:00";;+32 85 21 73 54;;;;;;;https://planningfamilialhuy.be/
|
||||||
;;;;;;;;;;;Le planning familial de maine-et-loire - 49;;12284972879.0;-0.5624992;47.4481762
|
12206871528;44.098744;3.0794673;;;;21, rue des Fasquets12100 MILLAU;;;;;;;;;;;;;;;05 65 60 51 75;;;https://www.planning-familial.org/fr/le-planning-familial-de-laveyron-12;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de l'aveyron - 12;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de seine-et-marne - 77;;12284975189.0;2.6732718;48.5447954
|
12284922394;48.6503163;2.3756959;;;;1, rue du Minotaure 91350 GRIGNY;;;;;;;;;;contact@planningfamilial.fr;;;;;01 69 45 06 09;;;https://www.planning-familial.org/fr/le-planning-familial-de-lessonne-91;;;;;;;;;;family_planning;;Le planning familial de l'essonne - 91;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des côtes d'armor - 22;;12284976078.0;-2.7620256;48.5190555
|
12284951572;48.0789229;-4.3298663;;;;Impasse Jean Quéré29100 Douarnenez;;;;;;;;;;;;;;;07 68 57 20 91;;;https://www.planning-familial.org/fr/le-planning-familial-du-finistere-29;;;;yes;;;;;;family_planning;;Le planning familial du finistère - 29;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du morbihan - 56;;12284976081.0;-2.4504856;47.6603105
|
12284969963;48.1043623;-1.6841853;;;;35-37, Bd de la Tour d'Auvergne 35000 RENNES;;;;;;;;;;;;;;;02 99 31 54 22;;;https://www.planning-familial.org/fr/le-planning-familial-dille-et-vilaine-35;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial d'ille-et-vilaine - 35;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de haute-garonne - 31;;12284985074.0;1.4576759;43.6105847
|
12284972879;47.4481762;-0.5624992;;;;1 rue André Maurois 49000 Angers;;;;;;;;;;;;;;;02 41 88 70 73;;;https://www.planning-familial.org/fr/le-planning-familial-de-maine-et-loire-49;;;;yes;yes;no;yes;yes;;family_planning;;Le planning familial de maine-et-loire - 49;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de seine-maritime - 76;;12284990280.0;1.0846102;49.4284174
|
12284975189;48.5447954;2.6732718;;;;Avenue Pierre Brossolette 77000 MELUN;;;;;;;;;;contact@planningfamilial.fr;;;;;01 72 83 24 92;;;https://www.planning-familial.org/fr/le-planning-familial-de-seine-et-marne-77;;;;;;;;;;family_planning;;Le planning familial de seine-et-marne - 77;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du calvados - 14;;12284990281.0;-0.3554671;49.1755912
|
12284976078;48.5190555;-2.7620256;;;;30 rue Brizeux22000 ST. BRIEUC;;;;;;;;;;;;;;;06 75 56 47 03;;;https://www.planning-familial.org/fr/le-planning-familial-des-cotes-darmor-22;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial des côtes d'armor - 22;;Contact pôle LGBTQIA+ : 06 79 62 11 04;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des deux-sèvres - 79;;12284991522.0;-0.4723337;46.3139033
|
12284976081;47.6603105;-2.4504856;;;;21 place du Général de Gaulle56230 Questembert;;;;;;;;;;;;;;;07 83 60 77 83;;;https://www.planning-familial.org/fr/le-planning-familial-du-morbihan-56;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du morbihan - 56;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des bouches-du-rhône - 13;;12284993727.0;5.3830111;43.3067072
|
12284985074;43.6105847;1.4576759;;;;44, place Nicolas Bachelier31000 TOULOUSE;;;;;;;;;;;;;;;05 61 25 54 17;;;https://www.planning-familial.org/fr/le-planning-familial-de-haute-garonne-31;;;;no;no;no;no;no;;family_planning;;Le planning familial de haute-garonne - 31;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du haut-rhin - 68;;12284993729.0;7.3333846;47.7483284
|
12284990280;49.4284174;1.0846102;;;;41, rue d'Elbeuf 76100 ROUEN;;;;;;;;;;;;;;;02 35 73 28 23;;;https://www.planning-familial.org/fr/le-planning-familial-de-seine-maritime-76;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de seine-maritime - 76;;;;"Mo 14:00-17:30; Tu-Fr 09:00-12:30,14:00-17:30";;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du puy-de-dôme 63;;12285002956.0;3.1141928;45.7869511
|
12284990281;49.1755912;-0.3554671;;;;30, rue Saint Michel14000 CAEN;;;;;;;;;;;;;;;02 31 82 20 50;;;https://www.planning-familial.org/fr/le-planning-familial-du-calvados-14;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du calvados - 14;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de vendée - 85;;12285006119.0;-1.4319261;46.6706166
|
12284991522;46.3139033;-0.4723337;;;;13 E, rue Louis Braille, 79000 NIORT;;;;;;;;;;;;;;;05 49 26 95 08;;;https://www.planning-familial.org/fr/le-planning-familial-des-deux-sevres-79;;;;no;no;no;yes;yes;;family_planning;;Le planning familial des deux-sèvres - 79;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial - varois;;12285008367.0;5.9329446;43.1260328
|
12284993727;43.3067072;5.3830111;;;;106, boulevard National, 13003 MARSEILLE;;;;;;;;;;;;;;;04 91 91 09 39;;;https://www.planning-familial.org/fr/le-planning-familial-des-bouches-du-rhone-13;;;;no;yes;no;yes;yes;;family_planning;;Le planning familial des bouches-du-rhône - 13;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la guyane - 973;;12285012186.0;-52.3071377;4.9291289
|
12284993729;47.7483284;7.3333846;;;;20, av Kennedy68200 MULHOUSE;;;;;;;;;;;;;;;+33 3 89 42 42 12;;;https://www.planning-familial.org/fr/68;;;;yes;no;no;no;no;;family_planning;;Le planning familial du haut-rhin - 68;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des landes - 40;;12285014981.0;-0.4942609;43.8968085
|
12285002956;45.7869511;3.1141928;;;;25 rue Lucie et Raymond Aubrac63100 CLERMONT FERRAND;;;;;;;;;;;;;;;04 73 37 12 07;;;https://www.planning-familial.org/fr/le-planning-familial-du-puy-de-dome-63;;;;yes;yes;no;yes;yes;;family_planning;;Le planning familial du puy-de-dôme 63;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Association martiniquaise pour l'information et l'orientation familiale (amiof);;12285028852.0;-61.070573;14.6141605
|
12285006119;46.6706166;-1.4319261;;;;71 Bd Aristide Briand, 85000 La ROCHE-sur-YON;;;;;;;;;;;;;;;02 51 07 57 84;;;https://www.planning-familial.org/fr/le-planning-familial-de-vendee-85;;;;no;no;no;no;no;;family_planning;;Le planning familial de vendée - 85;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de haute-savoie - 74;;12285030903.0;6.123263;45.8986097
|
12285008367;43.1260328;5.9329446;;;;5 Avenue Colbert, 83000 TOULON;;;;;;;;;;;;;;;04 22 14 54 25;;;https://www.planning-familial.org/fr/le-planning-familial-varois;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial - varois;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de paris - 75;;12285035031.0;2.33943;48.867518
|
12285012186;4.9291289;-52.3071377;;;;10 impasse de la plantation97300 Cayenne;;;;;;;;;;;;;;;05 94 21 68 99;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-guyane-973;;;;no;no;no;no;no;;family_planning;;Le planning familial de la guyane - 973;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial 92;;12285035032.0;2.279638;48.927955
|
12285014981;43.8968085;-0.4942609;;;;39 rue Martin Luther King, 40000 Mont de Marsan;;;;;;;;;;;;;;;06 18 26 84 50;;;https://www.planning-familial.org/fr/le-planning-familial-des-landes-40;;;;no;no;no;no;no;;family_planning;;Le planning familial des landes - 40;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la seine-saint-denis - 93;;12285035033.0;2.359571;48.938082
|
12285028852;14.6141605;-61.070573;;;;125-127, rue Moreau de Jonnes97200 FORT-DE-FRANCE;;;;;;;;;;;;;;06 96 23 11 76;;;;https://www.planning-familial.org/fr/association-martiniquaise-pour-linformation-et-lorientation-familiale-amiof;;;;no;no;no;no;no;;family_planning;;Association martiniquaise pour l'information et l'orientation familiale (amiof);;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du val-de-marne - 94;;12285035034.0;2.440059;48.80415
|
12285030903;45.8986097;6.123263;;;;Salle Charles Coppier Quai des Clarisses, 74000 ANNECY;;;;;;;;;;;;;;;+33766298917;;;https://www.planning-familial.org/fr/le-planning-familial-de-haute-savoie-74;;;;no;no;no;no;no;;family_planning;;Le planning familial de haute-savoie - 74;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;La maternité consciente;;12285038799.0;-61.5329481;16.2394598
|
12285035031;48.867518;2.33943;;;;10, rue Vivienne, 75002 PARIS;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-paris-75;;;;yes;yes;no;no;no;;family_planning;;Le planning familial de paris - 75;;;;;;;;;;;;;
|
||||||
;social_centre;;;https://planningnivelles.be/;;;;;;;Centre de Planning Familial de Nivelles;;12285720547.0;4.3259068;50.6003051
|
12285035032;48.927955;2.279638;;;;6, avenue Jules Durand, 92600 ASNIĒRES;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/92;;;;no;no;no;yes;no;;family_planning;;Le planning familial 92;;;;;;;;;;;;;
|
||||||
;;;;https://www.guidesocial.be/cpf_tubize/;;;;;;;Centre de Planning Familial Pluraliste;;12285966534.0;4.206348;50.689598
|
12285035033;48.938082;2.359571;;;;3, 5, 7, 9 Rue E. Vaillant, 93200 SAINT- DENIS;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-seine-saint-denis-93;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de la seine-saint-denis - 93;;;;;;;;;;;;;
|
||||||
;social_centre;;+32 2 355 01 99;;;;;;;;Planning Familial Tubize Rosa Guilmot;;12285970178.0;4.2022866;50.6906309
|
12285035034;48.80415;2.440059;;;;52, rue Carnot, 94700 MAISONS ALFORT;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-val-de-marne-94;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du val-de-marne - 94;;;;;;;;;;;;;
|
||||||
;;;+32 67 55 13 71;;;;;;;;Centre de Planning Familial;;12286203891.0;4.1359939;50.601306
|
12285038799;16.2394598;-61.5329481;;;;6, rue François Arago97154 POINT à PITRE;;;;;;;;;;;;;;;05 90 83 69 74;;;https://www.planning-familial.org/fr/la-maternite-consciente;;;;no;no;no;no;no;;family_planning;;La maternité consciente;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'aisne - 02;;12286356817.0;3.2195682;49.6164061
|
12285720547;50.6003051;4.3259068;Nivelles;;;;62;1400;Boulevard des Archers;;social_centre;;;;;;;;;;;;;;;;planningnivelles@gmail.com;;;;;;;family_planning;;Centre de Planning Familial de Nivelles;;;;;;;;;;;;;https://planningnivelles.be/
|
||||||
;;;;https://la-bulle.org/;;;;;;;Centres de planning familial La bulle;;12287817090.0;4.3138555;50.0485638
|
12285966534;50.689598;4.206348;Tubize;;;;32;1380;Rue des Frères Taymans;202;;civic;4;;;;;;;;;;;;;;;;;;;;;family_planning;;Centre de Planning Familial Pluraliste;;;;;;;;;;;;;https://www.guidesocial.be/cpf_tubize/
|
||||||
;;;;;;;;;;;Centre de Planning familial Soralia;;12287904545.0;3.9423722;50.4525741
|
12285970178;50.6906309;4.2022866;Tubize;;;;3;1480;Rue Ferrer;;social_centre;;;;;;;;;;;;;;;;;;;;;;;family_planning;;Planning Familial Tubize Rosa Guilmot;;;;;;+32 2 355 01 99;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'orne - 61;;12288191494.0;0.0952311;48.4326088
|
12286203891;50.601306;4.1359939;Braine-le-Comte;;;;19;7090;Rue des Frères Dulait;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Centre de Planning Familial;;;;;;+32 67 55 13 71;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la sarthe - 72;;12288211863.0;0.195948;48.005462
|
12286356817;49.6164061;3.2195682;;;;BP 800 280 2300 Chauny;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lain-02;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de l'aisne - 02;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial d’indre et loire;;12288211864.0;0.6975264;47.3835713
|
12287817090;50.0485638;4.3138555;Chimay;;;;38;6460;Grand'Rue;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Centres de planning familial La bulle;;;;;;;;;;;;;https://la-bulle.org/
|
||||||
;;;;;;;;;;;Le planning familial du cher - 18;;12288228857.0;2.4010431;47.0827848
|
12287904545;50.4525741;3.9423722;Mons;;;;5;7000;Boulevard Gendebien;;;;;;;;;;;;;;;https://www.sofelia.be/;;;;;;;;;counselling;family_planning;;Centre de Planning familial Soralia;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de haute marne - 52;;12288251775.0;4.971948;48.6565361
|
12288191494;48.4326088;0.0952311;;;;25-27 rue Demées61000 ALENÇON;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lorme-61;;;;;;;;;;family_planning;;Le planning familial de l'orne - 61;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la haute-vienne - 87;;12288258153.0;1.2561583;45.8549819
|
12288211863;48.005462;0.195948;;;;28, Place de l'Éperon72000 Le MANS;;;;;;;;;;;;;;;02 43 24 91 84;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-sarthe-72;;;;;;;;;;family_planning;;Le planning familial de la sarthe - 72;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des hautes pyrénées- 65;;12288258787.0;0.0752353;43.2313473
|
12288211864;47.3835713;0.6975264;;;;10, place Neuve37000 TOURS;;;;;;;;;;contact@leplanningfamilial37.fr;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-dindre-et-loire-37;;;;;;;yes;yes;;family_planning;;Le planning familial d’indre et loire;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du loiret - 45;;12288260115.0;1.9017696;47.8995112
|
12288228857;47.0827848;2.4010431;;;;5, rue Samson, 18000 BOURGES;;;;;;;;;;;;;;;07 81 70 06 46;;;https://www.planning-familial.org/fr/le-planning-familial-du-cher-18;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du cher - 18;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'aude - 11;;12288262891.0;2.7557994;43.2004062
|
12288251775;48.6565361;4.971948;;;;14 rue Louise Michel52100 Bettancourt La Ferrée;;;;;;;;;;;;;;;07.49.98.37.06;;;https://www.planning-familial.org/fr/le-planning-familial-de-haute-marne-52;;;;;;;yes;;;family_planning;;Le planning familial de haute marne - 52;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Planning familial du tarn-et-garonne - 82;;12288269884.0;1.373985;44.0202107
|
12288258153;45.8549819;1.2561583;;;;40 rue Charles Silvestre87000 LIMOGES;;;;;;;;;;;;;;;06 44 96 43 86;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-haute-vienne-87;;;;;;;;;;family_planning;;Le planning familial de la haute-vienne - 87;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du gard (30);;12288272035.0;4.0792329;44.1292719
|
12288258787;43.2313473;0.0752353;;;;6, Place du Marché Brauhauban, 65000 TARBES;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-des-hautes-pyrenees-65;;;;;;;;;;family_planning;;Le planning familial des hautes pyrénées- 65;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;CHPC - Planing familial de Cherbourg;;12288277471.0;-1.6131663;49.63834
|
12288260115;47.8995112;1.9017696;;;;2 Rue Saint Paul, 45000 ORLĒANS;;;;;;;;;;;;;;;02 38 70 00 20;;;https://www.planning-familial.org/fr/loiret.planning-familial.org;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du loiret - 45;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du lot - 46;;12288277482.0;2.0298448;44.6089076
|
12288262891;43.2004062;2.7557994;;;;9 avenue Armand Barbès, 11200 Lezignan Corbières;;;;;;;;;;leplanningfamilialaudois@gmail.com;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-laude-11;;;;;;;;;;family_planning;;Le planning familial de l'aude - 11;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'ariège - 09;;12288279137.0;1.1460918;42.9828707
|
12288269884;44.0202107;1.373985;;;;505, avenue des Mourets 82000 Montauban;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-tarn-et-garonne-82;;;;yes;yes;yes;yes;yes;;family_planning;;Planning familial du tarn-et-garonne - 82;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du tarn - 81;;12288280695.0;1.7240515;43.8228521
|
12288272035;44.1292719;4.0792329;;;;29 rue du faubourg d'auvergne, 30100 ALES;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-gard-30;;;;no;no;no;no;no;;family_planning;;Le planning familial du gard (30);;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la vienne - 86;;12288281339.0;0.3611621;46.5931242
|
12288277471;49.63834;-1.6131663;;;;;;;;;;;;;;centredeplanificationfamiliale@ch-cotentin.fr;;;;;02.33.20.75.48;;;;;;;;;;;;;family_planning;;CHPC - Planing familial de Cherbourg;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du gers - 32;;12288283279.0;0.5809638;43.6517814
|
12288277482;44.6089076;2.0298448;;;;12, Avenue Fernand Pezet, 46100 FIGEAC;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-lot-46;;;;;;;;;;family_planning;;Le planning familial du lot - 46;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la marne - 51;;12288285061.0;4.04169;49.2467762
|
12288279137;42.9828707;1.1460918;;;;32 rue villefranche 09200 St Girons;;;;;;;;;;;;;;;06.29.26.79.78;;;https://www.planning-familial.org/fr/le-planning-familial-de-lariege-09;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de l'ariège - 09;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'ardèche - 07;;12288286382.0;4.1342658;44.4063661
|
12288280695;43.8228521;1.7240515;;;;6 Place Saint Michel, 81800 RABASTENS;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-tarn-81;;;;no;no;no;no;no;;family_planning;;Le planning familial du tarn - 81;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Planning familial de lozère - 48;;12288288589.0;3.4982885;44.5202462
|
12288281339;46.5931242;0.3611621;;;;20, rue du Fief des Hausses, 86000 POITIERS;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-vienne-86;;;;no;no;no;no;no;;family_planning;;Le planning familial de la vienne - 86;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la somme - 80;;12288288791.0;2.290809;49.8926102
|
12288283279;43.6517814;0.5809638;;;;6 rue d'Astorg, 32000 Auch;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-gers-32;;;;no;no;no;yes;yes;;family_planning;;Le planning familial du gers - 32;;;;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du vaucluse - 84;;12288289025.0;4.8231261;43.9290332
|
12288285061;49.2467762;4.04169;;;;122 bis, rue du Barbâtre51100 REIMS;;;;;;;;;;;;;;;03 26 83 97 23;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-marne-51;;;;;;;;;;family_planning;;Le planning familial de la marne - 51;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de lot-et-garonne - 47;;12288290043.0;0.6170817;44.2032042
|
12288286382;44.4063661;4.1342658;;;;7 avenue Ferdinand Nadal07140 Les Vans;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lardeche-07;;;;no;no;no;no;no;;family_planning;;Le planning familial de l'ardèche - 07;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial du cantal -15;;12288291541.0;2.4429707;44.9242054
|
12288288589;44.5202462;3.4982885;;;;10 rue de Chanteronne, 48000 Mende;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lozere-48;;;;yes;yes;no;yes;yes;;family_planning;;Planning familial de lozère - 48;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Planning familial de l'isère - 38;;12288297574.0;5.724345;45.1861156
|
12288288791;49.8926102;2.290809;;;;;;;;;;;;;;planningfamilial80@ik.meou;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-somme-80;;;;no;no;no;no;no;;family_planning;;Le planning familial de la somme - 80;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de charente - 16;;12288306208.0;0.1585997;45.6488878
|
12288289025;43.9290332;4.8231261;;;;2, Place Alexandre Farnèse, 84000 AVIGNON;;;;;;;;;;;;;;;04 90 87 43 69;;;https://www.planning-familial.org/fr/le-planning-familial-du-vaucluse-84;;;;no;yes;no;no;no;;family_planning;;Le planning familial du vaucluse - 84;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de haute loire - 43;;12288309543.0;3.8913455;45.0449446
|
12288290043;44.2032042;0.6170817;;;;6 rue Chaudordy - 2ème étage, 47000 AGEN;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lot-et-garonne-47;;;;no;no;no;no;no;;family_planning;;Le planning familial de lot-et-garonne - 47;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des alpes-maritimes - 06;;12288314851.0;7.2633462;43.7084738
|
12288291541;44.9242054;2.4429707;;;;8, Place de la Paix 15000 AURILLAC;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-cantal-15;;;;no;no;no;no;no;;family_planning;;Le planning familial du cantal -15;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la drôme - 26;;12288315035.0;4.9095958;44.9265678
|
12288297574;45.1861156;5.724345;;;;36 rue Lesdiguières38000 GRENOBLE;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lisere-38;;;;no;yes;no;no;no;;family_planning;;Planning familial de l'isère - 38;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'oise - 60;;12288316304.0;2.815372;49.4276895
|
12288306208;45.6488878;0.1585997;;;;Centre associatif Jacques Chardonne, 28 rue Mirabeau 16000 ANGOULEME;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-charente-16;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de charente - 16;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de la creuse - 23;;12288317358.0;1.8741332;46.1674827
|
12288309543;45.0449446;3.8913455;;;;2, rue André Laplace 43000 LE PUY EN VELAY;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-haute-loire-43;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de haute loire - 43;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial des hautes-alpes - 05;;12288322694.0;6.0793803;44.5575289
|
12288314851;43.7084738;7.2633462;;;;22 Avenue Malausséna06000 NICE;;;;;;;;;;;;;;;04 92 09 17 26;;;https://www.planning-familial.org/fr/le-planning-familial-des-alpes-maritimes-06;;;;no;no;no;yes;yes;;family_planning;;Le planning familial des alpes-maritimes - 06;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'indre 36;;12288326316.0;1.6767709;46.8029595
|
12288315035;44.9265678;4.9095958;;;;63, rue Adolphe Thiers 26000 VALENCE;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-drome-26;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial de la drôme - 26;;;association;;;;;;;;;;
|
||||||
;;;;;;;;;;;Le planning familial de l'allier - 03;;12288329062.0;3.1087882;46.6632745
|
12288316304;49.4276895;2.815372;;;;589 av Octave Butin, 60280 Margny-lès-compiègne;;;;;;;;;;;;;;;06.09.10.61.09;;;https://www.planning-familial.org/fr/le-planning-familial-de-loise-60;;;;;;;;;;family_planning;;Le planning familial de l'oise - 60;;;association;;;;;;;;;;
|
||||||
;social_facility;;;;;;;;;;Le planning familial du pas-de-calais - 62;outreach;12288331317.0;2.8308611;50.4299887
|
12288317358;46.1674827;1.8741332;;;;1 avenue du Dr.Manouvrier23000 GUERET;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-la-creuse-23;;;;no;no;no;no;no;;family_planning;;Le planning familial de la creuse - 23;;;association;;;;;;;;;;
|
||||||
|
12288322694;44.5575289;6.0793803;;;;7 rue Capitaine de Bresson05000 GAP;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/05;;;;no;yes;no;yes;yes;;family_planning;;Le planning familial des hautes-alpes - 05;;;association;;;;;;;;;;
|
||||||
|
12288326316;46.8029595;1.6767709;;;;1, rue de Provence 36000 CHATEAUROUX;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lindre-36;;;;yes;yes;no;yes;yes;;family_planning;;Le planning familial de l'indre 36;;;association;;;;;;;;;;
|
||||||
|
12288329062;46.6632745;3.1087882;;;;Lieu-dit Les Breteaux 03160 Couzon;;;;;;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-de-lallier-03;;;;;;;;;;family_planning;;Le planning familial de l'allier - 03;;;;;;;;;;;;;
|
||||||
|
12288331317;50.4299887;2.8308611;;;;la Maison des Associations Michel Darras, 45 rue François Gauthier 62300 LENS;;;;;social_facility;;;;;;;;;;;;;https://www.planning-familial.org/fr/le-planning-familial-du-pas-de-calais-62;;;;yes;yes;yes;yes;yes;;family_planning;;Le planning familial du pas-de-calais - 62;;;;;;;;;outreach;;;;
|
||||||
|
12291827231;50.4141136;3.8964437;Frameries;;;;2;7080;Rue Dufrane-Friart;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial - La Famille Heureuse;;;;;;;;;;;;;http://www.planningfamilial-frameries.be
|
||||||
|
12291827232;50.4754402;4.1955865;La Louvière;;;;124;7100;Rue Arthur Warocqué;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial - Claire Houtain;;;;;;;;;;;;;
|
||||||
|
12291831271;50.462484;4.357868;Courcelles;;;;115;6180;Rue de Trazegnies;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial;;;;;;;;;;;;;
|
||||||
|
12292093889;50.4786139;4.2064761;La Louvière;;1;;40;7100;Avenue Max Buset;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial Soralia;;;;;;;;;;;;;http://www.planningsfps.be/
|
||||||
|
12292093890;50.5818331;4.0694738;Soignies;;;;15;7060;Rempart du Vieux Cimetière;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial Soralia;;;;;;;;;;;;;http://www.planningsfps.be/
|
||||||
|
12292093892;50.6085617;3.3932391;Tournai;;;;8;7500;Rue de Cordes;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;Planning Familial;;;;;;;;;;;;;https://www.lesassociationssolidaris.be
|
||||||
|
12292592788;50.6693153;5.0716196;Hannut;;;;24;1350;Rue de Wavre;;;;;;;;;;;;;;;;;;;;;;;;counselling;family_planning;;l'Oasis;;;;;;;;;;;;;http://oasis-familiale.com/
|
||||||
|
|
@ -160,6 +160,34 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 7175230273,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Tournai",
|
||||||
|
"addr:housenumber": "19",
|
||||||
|
"addr:postcode": "7500",
|
||||||
|
"addr:street": "Rue Duquesnoy",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - Au Quai",
|
||||||
|
"website": "https://auquai.be/"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 2
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.3961514,
|
||||||
|
50.608366
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "Feature",
|
"type": "Feature",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -198,13 +226,70 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 8131842962,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Saint-Ghislain",
|
||||||
|
"addr:housenumber": "3",
|
||||||
|
"addr:postcode": "7330",
|
||||||
|
"addr:street": "Onzi\u00e8me Rue",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Centre de Planning Familial \"L\u00e9a Lor\"",
|
||||||
|
"website": "http://www.centredeplanningfamiliallealor.be/"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 2
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.8160826,
|
||||||
|
50.4464512
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 9431738380,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Mons",
|
||||||
|
"addr:housenumber": "46",
|
||||||
|
"addr:postcode": "7000",
|
||||||
|
"addr:street": "Rue de la Grande Triperie",
|
||||||
|
"contact:facebook": "https://www.facebook.com/Planning-Familial-La-Famille-Heureuse-de-Mons-1088400341180784/",
|
||||||
|
"contact:phone": "+32 65 33 93 61",
|
||||||
|
"email": "planningfamilialmons@skynet.be",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "La Famille Heureuse"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 2
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.9515271,
|
||||||
|
50.4502666
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "Feature",
|
"type": "Feature",
|
||||||
"properties": {
|
"properties": {
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 9506347102,
|
"id": 9506347102,
|
||||||
"tags": {
|
"tags": {
|
||||||
"Peyrelevade28": "rue Jean Jaur\u00e8s, 19000 Tulle",
|
|
||||||
"addr:full": "Maison des associations, c\u00f4te de Vinzan, 19290",
|
"addr:full": "Maison des associations, c\u00f4te de Vinzan, 19290",
|
||||||
"contact:website": "https://www.planning-familial.org/fr/le-planning-familial-de-correze-19",
|
"contact:website": "https://www.planning-familial.org/fr/le-planning-familial-de-correze-19",
|
||||||
"family_planning:handles:abortion": "yes",
|
"family_planning:handles:abortion": "yes",
|
||||||
@ -217,10 +302,10 @@
|
|||||||
"office": "association",
|
"office": "association",
|
||||||
"phone": "+33 800 08 11 11;+33 7 87 83 22 49;+33 7 69 46 85 18"
|
"phone": "+33 800 08 11 11;+33 7 87 83 22 49;+33 7 69 46 85 18"
|
||||||
},
|
},
|
||||||
"timestamp": "2024-10-25T14:49:05Z",
|
"timestamp": "2024-10-27T15:27:40Z",
|
||||||
"user": "Bender l'importateur",
|
"user": "mueschel",
|
||||||
"uid": 20018660,
|
"uid": 616774,
|
||||||
"version": 2
|
"version": 3
|
||||||
},
|
},
|
||||||
"geometry": {
|
"geometry": {
|
||||||
"type": "Point",
|
"type": "Point",
|
||||||
@ -516,6 +601,39 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12030998698,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Huy",
|
||||||
|
"addr:housenumber": "1",
|
||||||
|
"addr:postcode": "4500",
|
||||||
|
"addr:street": "Rue Delloye Matthieu",
|
||||||
|
"contact:email": "huy@planningfamilial.net",
|
||||||
|
"contact:facebook": "https://www.facebook.com/profile.php?id=100064975082343",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"healthcare:speciality:de": "family planning",
|
||||||
|
"name": "\u00ab\u00a0Choisir Huy\u00a0\u00bb Planning Familial",
|
||||||
|
"opening_hours": "Mo 10:00-16:30; We 12:00-16:30; Tu, Th 15:00-16:30; Fr 12:00-19:00",
|
||||||
|
"phone": "+32 85 21 73 54",
|
||||||
|
"website": "https://planningfamilialhuy.be/"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T22:05:28Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 3
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
5.2416027,
|
||||||
|
50.5197581
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "Feature",
|
"type": "Feature",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -2478,6 +2596,201 @@
|
|||||||
50.4299887
|
50.4299887
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12291827231,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Frameries",
|
||||||
|
"addr:housenumber": "2",
|
||||||
|
"addr:postcode": "7080",
|
||||||
|
"addr:street": "Rue Dufrane-Friart",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - La Famille Heureuse",
|
||||||
|
"website": "http://www.planningfamilial-frameries.be"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.8964437,
|
||||||
|
50.4141136
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12291827232,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "La Louvi\u00e8re",
|
||||||
|
"addr:housenumber": "124",
|
||||||
|
"addr:postcode": "7100",
|
||||||
|
"addr:street": "Rue Arthur Warocqu\u00e9",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - Claire Houtain"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.1955865,
|
||||||
|
50.4754402
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12291831271,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Courcelles",
|
||||||
|
"addr:housenumber": "115",
|
||||||
|
"addr:postcode": "6180",
|
||||||
|
"addr:street": "Rue de Trazegnies",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T13:44:02Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.357868,
|
||||||
|
50.462484
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292093889,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "La Louvi\u00e8re",
|
||||||
|
"addr:floor": "1",
|
||||||
|
"addr:housenumber": "40",
|
||||||
|
"addr:postcode": "7100",
|
||||||
|
"addr:street": "Avenue Max Buset",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Soralia",
|
||||||
|
"website": "http://www.planningsfps.be/"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.2064761,
|
||||||
|
50.4786139
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292093890,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Soignies",
|
||||||
|
"addr:housenumber": "15",
|
||||||
|
"addr:postcode": "7060",
|
||||||
|
"addr:street": "Rempart du Vieux Cimeti\u00e8re",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Soralia",
|
||||||
|
"website": "http://www.planningsfps.be/"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.0694738,
|
||||||
|
50.5818331
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292093892,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Tournai",
|
||||||
|
"addr:housenumber": "8",
|
||||||
|
"addr:postcode": "7500",
|
||||||
|
"addr:street": "Rue de Cordes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial",
|
||||||
|
"website": "https://www.lesassociationssolidaris.be"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.3932391,
|
||||||
|
50.6085617
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292592788,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Hannut",
|
||||||
|
"addr:housenumber": "24",
|
||||||
|
"addr:postcode": "1350",
|
||||||
|
"addr:street": "Rue de Wavre",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "l'Oasis",
|
||||||
|
"website": "http://oasis-familiale.com/"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-10-27T22:05:28Z",
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
5.0716196,
|
||||||
|
50.6693153
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"version": 0.6,
|
"version": 0.6,
|
||||||
"generator": "Overpass API 0.7.62.1 084b4234",
|
"generator": "Overpass API 0.7.62.1 084b4234",
|
||||||
"osm3s": {
|
"osm3s": {
|
||||||
"timestamp_osm_base": "2024-10-26T20:31:13Z",
|
"timestamp_osm_base": "2024-10-28T14:34:00Z",
|
||||||
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
@ -131,6 +131,27 @@
|
|||||||
"social_facility": "outreach"
|
"social_facility": "outreach"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 7175230273,
|
||||||
|
"lat": 50.6083660,
|
||||||
|
"lon": 3.3961514,
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158422371,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Tournai",
|
||||||
|
"addr:housenumber": "19",
|
||||||
|
"addr:postcode": "7500",
|
||||||
|
"addr:street": "Rue Duquesnoy",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - Au Quai",
|
||||||
|
"website": "https://auquai.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 7429068423,
|
"id": 7429068423,
|
||||||
@ -162,18 +183,61 @@
|
|||||||
"source": "Métropole Européenne de Lille"
|
"source": "Métropole Européenne de Lille"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 8131842962,
|
||||||
|
"lat": 50.4464512,
|
||||||
|
"lon": 3.8160826,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Saint-Ghislain",
|
||||||
|
"addr:housenumber": "3",
|
||||||
|
"addr:postcode": "7330",
|
||||||
|
"addr:street": "Onzième Rue",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Centre de Planning Familial \"Léa Lor\"",
|
||||||
|
"website": "http://www.centredeplanningfamiliallealor.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 9431738380,
|
||||||
|
"lat": 50.4502666,
|
||||||
|
"lon": 3.9515271,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Mons",
|
||||||
|
"addr:housenumber": "46",
|
||||||
|
"addr:postcode": "7000",
|
||||||
|
"addr:street": "Rue de la Grande Triperie",
|
||||||
|
"contact:facebook": "https://www.facebook.com/Planning-Familial-La-Famille-Heureuse-de-Mons-1088400341180784/",
|
||||||
|
"contact:phone": "+32 65 33 93 61",
|
||||||
|
"email": "planningfamilialmons@skynet.be",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "La Famille Heureuse"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 9506347102,
|
"id": 9506347102,
|
||||||
"lat": 45.7020496,
|
"lat": 45.7020496,
|
||||||
"lon": 2.0553623,
|
"lon": 2.0553623,
|
||||||
"timestamp": "2024-10-25T14:49:05Z",
|
"timestamp": "2024-10-27T15:27:40Z",
|
||||||
"version": 2,
|
"version": 3,
|
||||||
"changeset": 158341527,
|
"changeset": 158418269,
|
||||||
"user": "Bender l'importateur",
|
"user": "mueschel",
|
||||||
"uid": 20018660,
|
"uid": 616774,
|
||||||
"tags": {
|
"tags": {
|
||||||
"Peyrelevade28": "rue Jean Jaurès, 19000 Tulle",
|
|
||||||
"addr:full": "Maison des associations, côte de Vinzan, 19290",
|
"addr:full": "Maison des associations, côte de Vinzan, 19290",
|
||||||
"contact:website": "https://www.planning-familial.org/fr/le-planning-familial-de-correze-19",
|
"contact:website": "https://www.planning-familial.org/fr/le-planning-familial-de-correze-19",
|
||||||
"family_planning:handles:abortion": "yes",
|
"family_planning:handles:abortion": "yes",
|
||||||
@ -410,6 +474,32 @@
|
|||||||
"social_facility:for": "woman"
|
"social_facility:for": "woman"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12030998698,
|
||||||
|
"lat": 50.5197581,
|
||||||
|
"lon": 5.2416027,
|
||||||
|
"timestamp": "2024-10-27T22:05:28Z",
|
||||||
|
"version": 3,
|
||||||
|
"changeset": 158433339,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Huy",
|
||||||
|
"addr:housenumber": "1",
|
||||||
|
"addr:postcode": "4500",
|
||||||
|
"addr:street": "Rue Delloye Matthieu",
|
||||||
|
"contact:email": "huy@planningfamilial.net",
|
||||||
|
"contact:facebook": "https://www.facebook.com/profile.php?id=100064975082343",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"healthcare:speciality:de": "family planning",
|
||||||
|
"name": "« Choisir Huy » Planning Familial",
|
||||||
|
"opening_hours": "Mo 10:00-16:30; We 12:00-16:30; Tu, Th 15:00-16:30; Fr 12:00-19:00",
|
||||||
|
"phone": "+32 85 21 73 54",
|
||||||
|
"website": "https://planningfamilialhuy.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 12206871528,
|
"id": 12206871528,
|
||||||
@ -1897,6 +1987,152 @@
|
|||||||
"social_facility": "outreach"
|
"social_facility": "outreach"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12291827231,
|
||||||
|
"lat": 50.4141136,
|
||||||
|
"lon": 3.8964437,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Frameries",
|
||||||
|
"addr:housenumber": "2",
|
||||||
|
"addr:postcode": "7080",
|
||||||
|
"addr:street": "Rue Dufrane-Friart",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - La Famille Heureuse",
|
||||||
|
"website": "http://www.planningfamilial-frameries.be"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12291827232,
|
||||||
|
"lat": 50.4754402,
|
||||||
|
"lon": 4.1955865,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "La Louvière",
|
||||||
|
"addr:housenumber": "124",
|
||||||
|
"addr:postcode": "7100",
|
||||||
|
"addr:street": "Rue Arthur Warocqué",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - Claire Houtain"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12291831271,
|
||||||
|
"lat": 50.4624840,
|
||||||
|
"lon": 4.3578680,
|
||||||
|
"timestamp": "2024-10-27T13:44:02Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158413817,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Courcelles",
|
||||||
|
"addr:housenumber": "115",
|
||||||
|
"addr:postcode": "6180",
|
||||||
|
"addr:street": "Rue de Trazegnies",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292093889,
|
||||||
|
"lat": 50.4786139,
|
||||||
|
"lon": 4.2064761,
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158422371,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "La Louvière",
|
||||||
|
"addr:floor": "1",
|
||||||
|
"addr:housenumber": "40",
|
||||||
|
"addr:postcode": "7100",
|
||||||
|
"addr:street": "Avenue Max Buset",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Soralia",
|
||||||
|
"website": "http://www.planningsfps.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292093890,
|
||||||
|
"lat": 50.5818331,
|
||||||
|
"lon": 4.0694738,
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158422371,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Soignies",
|
||||||
|
"addr:housenumber": "15",
|
||||||
|
"addr:postcode": "7060",
|
||||||
|
"addr:street": "Rempart du Vieux Cimetière",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Soralia",
|
||||||
|
"website": "http://www.planningsfps.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292093892,
|
||||||
|
"lat": 50.6085617,
|
||||||
|
"lon": 3.3932391,
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158422371,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Tournai",
|
||||||
|
"addr:housenumber": "8",
|
||||||
|
"addr:postcode": "7500",
|
||||||
|
"addr:street": "Rue de Cordes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial",
|
||||||
|
"website": "https://www.lesassociationssolidaris.be"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12292592788,
|
||||||
|
"lat": 50.6693153,
|
||||||
|
"lon": 5.0716196,
|
||||||
|
"timestamp": "2024-10-27T22:05:28Z",
|
||||||
|
"version": 1,
|
||||||
|
"changeset": 158433339,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Hannut",
|
||||||
|
"addr:housenumber": "24",
|
||||||
|
"addr:postcode": "1350",
|
||||||
|
"addr:street": "Rue de Wavre",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "l'Oasis",
|
||||||
|
"website": "http://oasis-familiale.com/"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "way",
|
"type": "way",
|
||||||
"id": 250223674,
|
"id": 250223674,
|
||||||
@ -1926,6 +2162,35 @@
|
|||||||
"website": "https://www.planninglln.be/"
|
"website": "https://www.planninglln.be/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 280097760,
|
||||||
|
"timestamp": "2024-10-27T22:05:28Z",
|
||||||
|
"version": 3,
|
||||||
|
"changeset": 158433339,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
2842735057,
|
||||||
|
2842735054,
|
||||||
|
2842735050,
|
||||||
|
2842735052,
|
||||||
|
2842735053,
|
||||||
|
2842735063,
|
||||||
|
2842735057
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Fléron",
|
||||||
|
"addr:housenumber": "55",
|
||||||
|
"addr:postcode": "4620",
|
||||||
|
"addr:street": "Rue de Magnée",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial",
|
||||||
|
"website": "https://www.facebook.com/planningfleron/"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "way",
|
"type": "way",
|
||||||
"id": 365363200,
|
"id": 365363200,
|
||||||
@ -1963,6 +2228,40 @@
|
|||||||
"website": "http://planning-perwez.be/"
|
"website": "http://planning-perwez.be/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 499177508,
|
||||||
|
"timestamp": "2024-10-27T22:05:28Z",
|
||||||
|
"version": 3,
|
||||||
|
"changeset": 158433339,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
4904854707,
|
||||||
|
4904854716,
|
||||||
|
4904854720,
|
||||||
|
4904854704,
|
||||||
|
9413248939,
|
||||||
|
9413248940,
|
||||||
|
9413248941,
|
||||||
|
9413248938,
|
||||||
|
4904854703,
|
||||||
|
4904854715,
|
||||||
|
4904854707
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Herstal",
|
||||||
|
"addr:housenumber": "27",
|
||||||
|
"addr:postcode": "4040",
|
||||||
|
"addr:street": "Rue de la Station",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Centre de Planning Familial",
|
||||||
|
"old_name": "La Famille Heureuse de Liège",
|
||||||
|
"website": "https://www.planningfamilialherstal.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "way",
|
"type": "way",
|
||||||
"id": 574906242,
|
"id": 574906242,
|
||||||
@ -2205,6 +2504,144 @@
|
|||||||
"website": "https://la-bulle.org/"
|
"website": "https://la-bulle.org/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 880953415,
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158422371,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
8193663772,
|
||||||
|
8193663773,
|
||||||
|
8193663774,
|
||||||
|
8193663771,
|
||||||
|
8193663772
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Thuin",
|
||||||
|
"addr:housenumber": "6",
|
||||||
|
"addr:postcode": "6530",
|
||||||
|
"addr:street": "Rue Verte",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial La Bulle",
|
||||||
|
"website": "http://www.la-bulle.org/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 911861929,
|
||||||
|
"timestamp": "2024-10-27T13:38:39Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413583,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
8467712228,
|
||||||
|
8467712234,
|
||||||
|
8467712227,
|
||||||
|
8467712226,
|
||||||
|
8467712229,
|
||||||
|
8467712228
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Comines-Warneton",
|
||||||
|
"addr:housenumber": "8",
|
||||||
|
"addr:postcode": "7780",
|
||||||
|
"addr:street": "Rue de Ten-Brielen - Ten Brielenstraat",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Soralia"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 928455507,
|
||||||
|
"timestamp": "2024-10-27T16:59:08Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158422371,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
8612170277,
|
||||||
|
8612170278,
|
||||||
|
8612170279,
|
||||||
|
8612170280,
|
||||||
|
2524877727,
|
||||||
|
2524878415,
|
||||||
|
8612170277
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Tournai",
|
||||||
|
"addr:housenumber": "16",
|
||||||
|
"addr:postcode": "7500",
|
||||||
|
"addr:street": "Rue de la Wallonie",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial",
|
||||||
|
"website": "http://www.planningfamilialtournai.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 929000190,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
8616010766,
|
||||||
|
8616010765,
|
||||||
|
8616010764,
|
||||||
|
8616010748,
|
||||||
|
8616010745,
|
||||||
|
8616010766
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Mouscron",
|
||||||
|
"addr:housenumber": "129",
|
||||||
|
"addr:postcode": "7700",
|
||||||
|
"addr:street": "Rue de la Station",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - La passerelle",
|
||||||
|
"website": "https://lapasserellemouscron.com/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 1011907578,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
9335855733,
|
||||||
|
9335855732,
|
||||||
|
9335855731,
|
||||||
|
9335855730,
|
||||||
|
9335855733
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Péruwelz",
|
||||||
|
"addr:housenumber": "4",
|
||||||
|
"addr:postcode": "7600",
|
||||||
|
"addr:street": "Rue du Berceau",
|
||||||
|
"building": "yes",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Le Safran",
|
||||||
|
"phone": "+32 69 78 03 21"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "way",
|
"type": "way",
|
||||||
"id": 1017752873,
|
"id": 1017752873,
|
||||||
@ -2264,9 +2701,9 @@
|
|||||||
{
|
{
|
||||||
"type": "way",
|
"type": "way",
|
||||||
"id": 1020145033,
|
"id": 1020145033,
|
||||||
"timestamp": "2024-10-24T18:40:25Z",
|
"timestamp": "2024-10-27T22:09:52Z",
|
||||||
"version": 2,
|
"version": 3,
|
||||||
"changeset": 158309250,
|
"changeset": 158433452,
|
||||||
"user": "eMerzh",
|
"user": "eMerzh",
|
||||||
"uid": 15399,
|
"uid": 15399,
|
||||||
"nodes": [
|
"nodes": [
|
||||||
@ -2283,14 +2720,139 @@
|
|||||||
"addr:housenumber": "3",
|
"addr:housenumber": "3",
|
||||||
"addr:postcode": "1410",
|
"addr:postcode": "1410",
|
||||||
"addr:street": "Avenue Valentin Tondeur",
|
"addr:street": "Avenue Valentin Tondeur",
|
||||||
"amenity": "social_centre",
|
|
||||||
"building": "house",
|
"building": "house",
|
||||||
|
"healthcare": "counselling",
|
||||||
"healthcare:speciality": "family_planning",
|
"healthcare:speciality": "family_planning",
|
||||||
"name": "Planning Familial de Waterloo",
|
"name": "Planning Familial de Waterloo",
|
||||||
"source:geometry:date": "2016-08-16",
|
"source:geometry:date": "2016-08-16",
|
||||||
"source:geometry:ref": "Picc/3473469",
|
"source:geometry:ref": "Picc/3473469",
|
||||||
"website": "https://www.planningfamilialwaterloo.be/"
|
"website": "https://www.planningfamilialwaterloo.be/"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 1167107564,
|
||||||
|
"timestamp": "2024-10-27T13:38:39Z",
|
||||||
|
"version": 4,
|
||||||
|
"changeset": 158413583,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
10852727773,
|
||||||
|
10852728134,
|
||||||
|
10852727853,
|
||||||
|
10852698572,
|
||||||
|
10852728061,
|
||||||
|
10852727906,
|
||||||
|
10852727773
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Charleroi",
|
||||||
|
"addr:country": "BE",
|
||||||
|
"addr:housenumber": "34",
|
||||||
|
"addr:postcode": "6000",
|
||||||
|
"addr:street": "Rue d'Orléans",
|
||||||
|
"building": "house",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Soralia",
|
||||||
|
"phone": "+3271507838",
|
||||||
|
"source:geometry": "Service public de Wallonie (SPW), imagerie numérique PICC https://geoportail.wallonie.be/",
|
||||||
|
"source:geometry:date": "2016-06-14",
|
||||||
|
"source:geometry:ref": "Picc/776389"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 1291154627,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
11970838102,
|
||||||
|
11970838098,
|
||||||
|
11970838200,
|
||||||
|
11970838306,
|
||||||
|
11970838173,
|
||||||
|
11970838255,
|
||||||
|
11970838102
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Mons",
|
||||||
|
"addr:housenumber": "100",
|
||||||
|
"addr:postcode": "7000",
|
||||||
|
"addr:street": "Rue des Arbalestriers",
|
||||||
|
"building": "house",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial Les Arbas",
|
||||||
|
"source:geometry:date": "2016-08-04",
|
||||||
|
"source:geometry:ref": "Picc/1545839",
|
||||||
|
"website": "https://www.planningfamilial-lesarbas.be/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 1317086839,
|
||||||
|
"timestamp": "2024-10-27T13:44:02Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413817,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
12189647865,
|
||||||
|
12189641183,
|
||||||
|
12189653755,
|
||||||
|
12189644486,
|
||||||
|
12189657170,
|
||||||
|
12189647896,
|
||||||
|
12189638617,
|
||||||
|
12189638588,
|
||||||
|
12189647865
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "Erquelinnes",
|
||||||
|
"addr:housenumber": "155",
|
||||||
|
"addr:postcode": "6560",
|
||||||
|
"addr:street": "Rue Albert Ier",
|
||||||
|
"building": "house",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familail Soralia",
|
||||||
|
"source:geometry:date": "2016-07-15",
|
||||||
|
"source:geometry:ref": "Picc/3609801"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "way",
|
||||||
|
"id": 1317545129,
|
||||||
|
"timestamp": "2024-10-27T13:35:06Z",
|
||||||
|
"version": 2,
|
||||||
|
"changeset": 158413441,
|
||||||
|
"user": "eMerzh",
|
||||||
|
"uid": 15399,
|
||||||
|
"nodes": [
|
||||||
|
12194183740,
|
||||||
|
12194183739,
|
||||||
|
12194183738,
|
||||||
|
12194183737,
|
||||||
|
12194183740
|
||||||
|
],
|
||||||
|
"tags": {
|
||||||
|
"addr:city": "La Louvière",
|
||||||
|
"addr:housenumber": "10",
|
||||||
|
"addr:postcode": "7100",
|
||||||
|
"addr:street": "Rue du Marché",
|
||||||
|
"building": "house",
|
||||||
|
"healthcare": "counselling",
|
||||||
|
"healthcare:speciality": "family_planning",
|
||||||
|
"name": "Planning Familial - La Bulle",
|
||||||
|
"source:geometry:date": "2016-06-15",
|
||||||
|
"source:geometry:ref": "Picc/846844",
|
||||||
|
"website": "https://la-bulle.org/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
1
osm_output/ponts_points_from_openstreetmap.csv
Normal file
1
osm_output/ponts_points_from_openstreetmap.csv
Normal file
@ -0,0 +1 @@
|
|||||||
|
id;latitude;longitude
|
|
@ -2,7 +2,7 @@
|
|||||||
"version": 0.6,
|
"version": 0.6,
|
||||||
"generator": "Overpass API 0.7.62.1 084b4234",
|
"generator": "Overpass API 0.7.62.1 084b4234",
|
||||||
"osm3s": {
|
"osm3s": {
|
||||||
"timestamp_osm_base": "2024-10-28T11:25:00Z",
|
"timestamp_osm_base": "2024-10-28T15:07:56Z",
|
||||||
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
|
Loading…
Reference in New Issue
Block a user